html, body {
    padding: 0 !important;
    margin: 0 !important;
    font-family: "Roboto", sans-serif;
}

/* Utility Classes */
.page {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}


/* Intro Page */


#introPage .row {
    width: 100%;
    height: 100vh;
}

#introPage > .row:first-of-type {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
}

#introPage > .row:first-of-type {
    background-image: url("blob.png");
    background-repeat: no-repeat;
    background-position-x: right;
    background-attachment: fixed;
    background-size: contain;
}

#introPage > .row:first-of-type > h1, h6 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

#introPage > .row:first-of-type > h6 {
    animation: FadeIn;
    animation-duration: 1.5s;
}

#introPage > .row:first-of-type > h1 {
    font-size: 5em;
}

#introPage > .row:first-of-type > h6 {
    font-size: 1em;
}


/* Mission Page */

#mission {
    width: 100%;
    display: flex;
    flex-direction: column;
}

#mission > .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 50px;
}

#mission > hr {
    width: 98%;
    color: gray;
}

#mission > .row > h1 {
    text-align: center;
    font-size: 4rem;
}


#mission > .row > p {
    text-align: center;
    width: 45%;
    font-size: 27px;
    margin-right: 50px;
    margin-left: 50px;
    text-align: center;
}

#mission > .row > .beforeafter > img {
    width: 60%;
    /* margin-right: 50px;
    margin-left: 50px; */
}

.beforeafter {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* BUY PAGE */

.page:nth-of-type(3) {
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.page > h1 {
    font-size: 4rem;
    width: 100%;
    text-align: center;
}

.card {
    height: auto;
    min-height: 500px;
    width: 50%;
    background-color: #808184;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card > h1 {
    text-align: center;
}

.card > button {
    background-color: #fcca46;
    border-radius: 20px;
    width: 90%;
    height: auto;
    border: none;
    margin-bottom: 10px;
}

.card > button > a {
    text-decoration: none;
    color: black;
}


/* Media Queries */

@media only screen and (max-width: 800px) {
    #introPage {
        flex-direction: row;
    }

    #introPage > .row:first-of-type {
        background-size: cover;
    }


    /* Mission */
    #mission {
        flex-direction: column;
    }

    #mission > .row {
        width: 100%;
    }

    #mission > .row:first-of-type > .box > p {
        font-size: 2.2vw;
    }

    #mission > .row:last-of-type > img {
        width: 80%;
        height: auto;
    }

    #mission > .row:first-of-type > .box {
        height: auto;
    }
    #mission > .row:first-of-type > .box > p {
        font-size: 90%;
    }

    .card {
        width: 90%;
    }

}

/* Anims */

@keyframes FadeIn {
    0% {
        opacity: 0%;
        transform: translateX(-20px);
    }

    100% {
        opacity: 100%;
        transform: translateX(0);
    }
}
