html {
    height: 100%;
    overflow-x: hidden;
    margin-right: calc(-1 * (100vw - 100%));
}

a {
    color: green;
    /* text-decoration: none; */
}

body {
    background-color: #e3d5b3;
    width: 1200px;
    height: calc(100% - 1vw);
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 1vw;
}

main {
    flex: 1;
    position: relative;
}

.background {
    background: #e3d5b3 url("images/soldier.png") no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 5% 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 201px;
    max-height: 608px;
}

@media screen and (max-width: 1400px) {
    body {
        width: 100% !important;
    }

    .background {
        max-height: 410px;
        left: 7.5%;
    }
}

/* Phones */
@media screen and (max-width: 600px) {
    body {
        width: 100vw !important;
    }

    .background {
        display: none;
    }

    /* Home page settings */
    #home_page {
        margin: 0vw 3vw !important;
    }

    /* FAQ settings */
    .faq_item {
        width: 92vw !important;
    }

    .q_and_a {
        width: 100% !important;
        margin-right: 16px !important;
    }

    #faq {
        margin-left: 0px !important;
        margin-top: 60px !important;
        width: 100vw !important;
    }

    /* Banner on all pages */
    .banner {
        width: 100vw !important;
        margin-bottom: 1vw !important;
    }

    #banner1 {
        font-size: 12.5vw !important;
        margin-top: 2vw !important;
    }

    #banner2 {
        font-size: 5.5vw !important;
    }

    #banner {
        font-size: 9vw !important;
    }
}

#banner1 {
    font-size: 80px;
    margin-bottom: 0px;
    margin-top: auto;
}

#banner2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

#banner3 {
    font-size: 40px;
    margin-top: 0px;
}

/* HOME_PAGE */

.download {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: min-content;
    height: min-content;
    background-color: #e3d5b3;
}

.download:hover {
    background-color: #c9b997;
}

.download a {
    padding: 5px 14px 5px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: black;
    text-decoration: none;
}

.download p {
    display: inline;
    padding-left: 5px;
    font-size: 18px;
}

#home_page {
    /* min-height: 412px; */
    text-align: center;
}

#content_frame {
    height: max-content;
    margin-top: 100px;
}


/* FAQ */

.faq_item {
    width: 570px;
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 16px;
}

.arrow {
    float: left;
    margin-right: 16px;
    flex-shrink: 0;
}

.arrow button {
    background: url('images/right_arrow.png') no-repeat;
    width: 16px;
    height: 16px;
    border: none;
    padding: 0px 0px;
    cursor: pointer;
}

.q_and_a {
    width: 100%;
    margin-right: 32px;
}

.question {
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.answer {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 8px;
}

#faq {
    text-align: left;
    margin-top: 80px;
    margin-left: 30%;
    width: 600px;
}