.top-menu {
    height: 15px;
    background-color: #FDCF1A;
}
.header {
    padding: 20px 10px;

}
.logo {
    max-width: fit-content;
}
.header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.nav-menu {
    display: grid;
    justify-content: center;
}
.nav-menu > div {
    display: flex;
    grid-gap: 30px;
    justify-content: center;
}
.nav-menu > div a{
    display: flex;
    grid-gap: 10px;
    transition: .3s;
}
.nav-menu > div:nth-child(2) {
    margin-top: 15px;
    margin-bottom: 35px;
}

@media only screen and (min-width:580px) and (max-width:920px) {

    .header-grid {
        grid-template-columns: .5fr 1fr;
    }
    
}
@media only screen and (min-width:0px) and (max-width:579px) {

    .header-grid {
        grid-template-columns: 1fr .5fr;
    }
    
}