header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
}

header .logo-container {
    width: 65%;
    height: 60px;
    display: flex;
    justify-content: center;
}

header .logo {
    max-height: 70px;
}

header .menu-container {
    margin-top: 16px;
}

header .menu-container .menu-btn {
    border: none;
    background: none;
    font-size: 1.2em;
    border-radius: 1em;
    letter-spacing: 3px;
    font-family: chunk, serif;
    font-weight: lighter;
    display: flex;
    align-items: center;
}

header .menu-container .menu-btn span {
    position: relative;
    top: 2px;
}

header .menu.hidden {
    display: none;
}

header .menu {
   position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.85);
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header .menu .top {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

header .menu .top .logo {
    max-height: 80px;
}

header .menu .content {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-top: 60px;
}

header .menu .content .menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .menu .content .menu-item img {
    height: 120px;
}

@media (min-width: 768px) {
    header .logo {
        height: 120px;
    }
    
    header .menu-container {
        margin-top: 32px;
    }
    
    header .menu {
        justify-content: flex-start;
        padding-top: 120px;
    }
    
    header .menu .content {
        grid-template-columns: repeat(4,1fr);
        grid-column-gap: 0;
        padding: 0 96px;
    }

    header .menu .content .menu-item img {
        height: 280px;
    }
}
