@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

a {
    color: inherit;
    text-decoration: inherit;
}

a:hover{
    color: #ccc;
}

*:focus {
    outline: none;
}

body{
    margin: 0;
    font-family: "Lato", serif;
    background: #fff;
}

#header{
    top: 0;
    background: #333333;
    width: 100%;
    position: fixed;
    color: #fff;
    font-weight: bold;
    z-index: 1;
}

#headerCenter{
    height: 100%;
    width: 90vw;
    max-width: 1266px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    display: flex;
    padding: min(1.8vw, 15px) 0;
    align-items: center;
}

#logoBtn{
    position: relative;
    font-size: min(3vw, 36px);
    display: inline-block;
    cursor: pointer;
}

#navWrapper{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.navItem{
    position: relative;
    display: inline-block;
    right: 0;
    text-transform: uppercase;
    font-size: min(2vw, 24px);
    padding-left: 2vw;
    cursor: pointer;
}

#closeIcon,
#hamburgerIcon{
    display: none;
}

@media (max-width:480px)  { 

    #header{
        width: 100%;
    }

    #header.open{
        height: 100%;
    }

    #header.open #navWrapper{
        display: flex;
        margin-top: 10vw;
    }
    
    #header.open #closeIcon{
        display: block;
    }
    
    #header.open #hamburgerIcon{
        display: none;
    }

    #logoBtn{
        font-size: 6vw;
    }

    #headerCenter{
        height: 60%;
        align-items: normal;
    }
    
    #navWrapper{
        display: none;
        flex-direction: column;
        justify-content: space-evenly;
    }

    .navItem{
        text-align: right;
        font-size: 5vw;
    }

    #closeIcon,
    #hamburgerIcon{
        display: block;
        position: absolute;
        width: 6vw;
        top: 3vw;
        right: 4vw;
    }

    #closeIcon{
        display: none;
    }
}