body{
    font-family: Arial, sans-serif;
    margin: 0;
}


.container{
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    
}


nav ul{
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    
}


section{
    margin-top: 20px;
    
}


.experience,
.skills{
    flex: 1;
    
}


.resume-bottom{
    display: flex;
    gap: 40px;
}

section h2 { background: rgb(221, 216, 216);
        color:  hsla(17, 72%, 27%, 0.737);}


h1 { background: rgb(221, 216, 216);
    color:  hsla(17, 72%, 27%, 0.737);}





nav ul li a { text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
    border-radius: 5px;
}

nav ul li a:hover { background-color: grey;
    color: white;

}