.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 87px 0 0;
}
nav{
    display: flex;
    justify-content: flex-end;
    column-gap: 39px;
}

nav 
a{
    text-decoration: none;
    color: #5d5f79;
    cursor: pointer;
}

nav
a:hover{
    color: #f15e50;
}

.toggle-btn{
    position: absolute;
    width: 30px;
    height: 21px;
    margin-left: 75%;
    flex-direction: column;
    justify-content: space-between;
    display: none;
}

.toggle-btn
.bar{
    height: 3px;
    width: 100%;
    background-color: black;
}

@media only screen and (max-width: 600px) {
    .navbar{
        margin: 10% 0 0;
    }
    
   nav{
       display: none;
       flex-direction: column;
       margin: 110% 0 0 0;
       padding: 0 45% 10% 3%;
       background-color: white;
       position: absolute;
       align-items: flex-start;
    }

    nav.active{
        display: flex;        
    }

    nav
    a{
        margin: 10% 10% 50% 0;
    }

    .toggle-btn{
        display: flex;
        margin-left: 60%;
    }
}
