html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    font-family: "Zalando Sans";
    
    background: #F1EDE7;
    color: black;

    scroll-behavior: smooth;
}

.standard_container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
}

.section_divider {
    width: 100%;
    max-width: 1100px;
    height: 1px;
    margin: 0 auto;
    background: rgba(0,0,0,0.08);
}

.green_button {
    font-family: "Zalando Sans";
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: black;
    background: #C3CCA6;
    border-radius: 1000px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}



/* Header */

header {
    height: 70px;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(0,0,0,0.2);

    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

header nav {
    height: 100%;
    width: 100%;

    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header_logo {
    font-weight: 600;
    color: black;
    position: absolute;
    left: 40px;
}

header nav a {
    font-family: "Zalando Sans";
    font-weight: 300;
    font-size: 15px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);

    padding: 0 12px;
}

.header_active {
    color: black;
    font-weight: 400;
}


.hamburger {
    position: absolute;
    left: 10px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 102;

    display: none;
}
  

.hamburger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}
  

.hamburger span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 6px));
}
.hamburger span:nth-child(2) {
    transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 6px));
}
  

.hamburger.is-open span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}


#mobile_menu {
    height: 100vh;
    width: 90vw;
    position: fixed;
    left: 0;
    top: 0;
    background: #F1EDE7;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    padding: 80px 24px 24px;
    box-sizing: border-box;

    z-index: 101;

    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}

#mobile_menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 20vw 0 20vw rgba(0,0,0,0.3);

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
}

#mobile_menu a {
    width: 100%;
    padding: 18px 0;

    font-size: 25px;
    font-weight: 300;

    text-decoration: none;
    color: black;
}



/* Footer */

footer {
    width: 100%;
    background: rgb(24, 24, 24);
    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 100px;
    z-index: 100;
}

.footer_content {
    width: 900px;
    margin: 0 auto;
    padding: 100px 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
}

.footer_content div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h2 {
    font-size: 30px;
    font-weight: 600;
    font-family: "Zalando Sans SemiExpanded";
    margin: 0;
    margin-bottom: 12px;
}

footer a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin: 6px;
    font-size: 14px;
    font-weight: 300;
}

footer p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 12px;
    color: #b8b8b8;
}








@media (max-width: 1000px) {
    
    /* Header */

    header {
        height: 70px;
        width: 100%;
        background: rgba(255, 255, 255, 1);
        border-bottom: 1px solid rgba(0,0,0,0.2);

        position: fixed;
        left: 0;
        top: 0;
        z-index: 100;
    }

    header nav {
        height: 100%;
        width: 100%;

        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .header_logo {
        font-weight: 600;
        color: black;
        position: absolute;
        left: 50%;
        transform: translate(-50%);
    }

    header nav a {
        font-family: "Zalando Sans";
        font-weight: 300;
        font-size: 16px;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.7);

        padding: 0 12px;
    }

    .nav_a {
        display: none;
    }

    .header_active {
        color: black;
        font-weight: 400;
    }

    .hamburger {
        display: block;
    }



    /* Footer */

    footer {
        width: 100%;
        background: rgb(24, 24, 24);
        color: white;

        display: flex;
        flex-direction: column;
        align-items: center;

        margin-top: 100px;
    }

    .footer_content {
        width: 100%;
        margin: 0 auto;
        padding: 100px 0;

        display: flex;
        flex-direction: column;
    }

    .footer_content div {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 30px 0;
    }

    footer h2 {
        font-size: 30px;
        font-weight: 600;
        font-family: "Zalando Sans SemiExpanded";
        margin: 0;
        margin-bottom: 12px;
    }

    footer a {
        color: white;
        text-decoration: none;
        text-transform: uppercase;
        margin: 6px;
        font-size: 14px;
        font-weight: 300;
    }

    footer p {
        margin: 0;
        margin-bottom: 10px;
        font-size: 12px;
        color: #b8b8b8;
    }
}