html {
    font-size: 16px;
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: #F2F2F2;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.container {
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: column;

    @media screen and (min-width: 1200px) {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1400px;
    }
}

.header {
    background-color: #1E1E1E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    margin-bottom: 0;
    position: relative;

    @media screen and (min-width: 1200px) {

        padding: 0 64px;
    }
}

.header__actionBar {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
}

.header__actionBar__btn {
    text-decoration: none;
    color: #FFFFFF;
    background-color: #C99272;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 18px;
    line-height: 24px;
}

.header__actionBar__btn.hidden {
    display: none;
}

.header__callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

    & img {
        width: 110px;
    }

    @media screen and (min-width: 1200px) {
        max-width: 452px;
        align-items: flex-start;
    }
}

.header__headline, .header__subheadline {
    text-align: center;

    @media screen and (min-width: 1200px) {
        text-align: left;
    }
}

.header__headline {
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;

    @media screen and (min-width: 576px) {
        font-size: 4rem;
        line-height: 4.5rem;
    }

    @media screen and (min-width: 768px) {
        font-size: 4.5rem;
        line-height: 5rem;
    }
}

.header__subheadline {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 2.5rem;
    color: #C99272;
}

.header__appStores {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    @media screen and (min-width: 1200px) {
        margin-top: 2rem;

        & img {
            width: 45%;
        }

        flex-direction: row;
        justify-content: flex-start;
    }
}

.header__illustration {
    width: 100%;
    margin: 2rem auto;

    @media screen and (min-width: 1200px) {
        max-width: 560px;
    }

    @media screen and (min-width: 1200px) {
        max-width: 635px;
        flex-direction: row;
        justify-content: flex-start;
    }
}

.header__bottomBorder {
    position: absolute;
    bottom: -90px;
    background: url("assets/headerBottomBorder.svg") no-repeat center;
    width: 100vw;
    height: 115px;
    background-position-y: -20px;
    background-size: cover;
    z-index: 1;
}

.header__appStoreBtn {
    height: 64px;
    margin: 0 auto;

    &.header__appStoreBtn--apple {
        background: url("assets/appStoreButton.svg") no-repeat;
        width: 191px;
    }

    &.header__appStoreBtn--google {
        background: url("assets/playstoreButton.svg") no-repeat center;
        width: 215px;
    }
}
.container.how-to {
    z-index: 0;
    width: 1400px;
    margin: auto;
    background: #C99272 url("assets/appOrderProcessImage.png") no-repeat;

    @media screen and (min-width: 1200px) {
        background-position: center;

    }
}

main {
    background-color: #C99272;
    z-index: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0;
}

footer {
    background-color: #F2F2F2;
    display: flex;
    justify-content: center;

    & a {
        text-align: center;
        text-decoration: none;
        color: #1E1E1E;
    }

    & .container {
        overflow: hidden;
    }
}

.footer__rightImage,
.footer__leftImage {
    display: none;
    width: 100%;
    max-width: 400px;
    position: absolute;

    @media screen and (min-width: 992px) {
        display: inline-flex;

    }
}

.footer__leftImage {
    @media screen and (min-width: 992px) {
        left: -100px;
        bottom: -30px;
    }
    @media screen and (min-width: 1200px) {
        left: 0;
    }
}

.footer__rightImage {
    @media screen and (min-width: 992px) {
        right: -100px;
        bottom: -150px;
    }
    @media screen and (min-width: 1200px) {
        right: 0;
    }
}

.footer__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 1rem 0;
    gap: 1rem;
    margin: auto;
}

.file-container {
    margin: auto;
}

.file-container embed {
    min-height: 100vh;
    min-width: 100vw;
}
