
img {
    width: 10rem; 
    height: 10rem;

}


body {
    font-family: 'Bubblegum Sans', cursive;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #007bff;
    color: white;
    padding: 1rem 0;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
}

nav ul li a:hover {
    background: #0056b3;
    border-radius: 0.3125rem;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    gap: 1.25rem;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    background: white;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
    max-width: 75rem;
    width: 80%;
    margin: 0 auto
}

.skill, .experience-item, .edu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0.625rem 0;
}

.skill img, .experience-item img, .edu img {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.social-links a img {
    width: 2.5rem;
    height: 2.5rem;
}

footer {
    text-align: center;
    padding: 0.625rem 0;
    background: #007bff;
    color: white;
}





  
  
  