header{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.navbar{
    flex:1;
    width: 100%;
    padding:2rem;
    display: flex;
    justify-content: space-between;
}
.logo img{
      width: 3.2rem;
      height: 3.2rem;
}
.menu-opener{
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap:0.5rem;
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
}
.menu-opener span{
    display:block;
    width:2rem;
    height: 0.1rem;
    background-color: var(--primary);
}
header nav{
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
header nav a{
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--primary);
}
header nav.opened{
    display: flex;   
}
@media(width>600px){
    header{
        flex-direction: row;
    }
    .menu-opener{
        display: none;
    }
    header nav{
        display: flex;
        flex-direction: row;
    }
}