html {
    height: 100vh;
}

body {
    margin: 0;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);
}

.descriptionWrapper {
    max-width: 400px;
    padding: 20px;
}

@media only screen and (max-width: 600px) {
    .descriptionWrapper {
        max-width: 95%;
    }
}

@media only screen and (min-width: 601px) {
    .descriptionWrapper {
        max-width: 590px;
    }
}

@media only screen and (min-width: 768px) {
    .descriptionWrapper {
        max-width: 700px;
    }
}


@media only screen and (min-width: 992px) {
    .descriptionWrapper {
        max-width: 700px;
    }
}

.pageWrapper {
    flex-direction: column;
    height: 100%;
    display: flex;
}

.wrapper {
    flex-direction: column;
    height: 100%;
    display: flex;
}

.descriptionSection {
    padding-bottom: 40px;
}

.description {
    font-size: 22px;
}


.splashBackground {
    background-color: #0867FC;
    display: flex;
    /* position: relative;   */
    flex-direction: column;
    height: 601px;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.splash {
    /* position:absolute; */
    z-index: -1;
    width: 100%;
    margin-top: 600px;
}

#title {
    font-size: 50px;
    color: var(--text-dark);
    font-family: DMSans;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}

.description {
    color: var(--text-dark);
    font-size: 30px;
    font-family: montserrat, montserrat-fallback, serif;
    font-weight: 500;
}

@media only screen and (max-width: 600px) {
    #title {
        font-size: 30px;
        margin-top: 0;
        margin-bottom: 0px;
    }

    .splashBackground {
        height: 501px;
    }

    .splash {
        margin-top: 500px;
    }

    .description {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (min-width: 601px) {
    #title {
        font-size: 40px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .splash {
        height: 600px;
    }

    .description {
        font-size: 20px;
    }
}

@media only screen and (min-width: 768px) {
    #title {
        font-size: 40px;
    }

    .splash {
        height: 600px;
    }

    .description {
        font-size: 20px;
    }
}


@media only screen and (min-width: 992px) {
    #title {
        font-size: 50px;
    }

    .splash {
        height: 800px;
    }

    .description {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    #title {
        font-size: 50px;
    }
}

.aboutWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .aboutWrapper {
        flex-direction: column;
    }
}

.aboutImage {
    width: 300px;
    border-radius: 200px;
}

.imageWrapper {
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    .imageWrapper {
        padding-left: 0px;
        padding-top: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .imageWrapper {
        padding-left: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .imageWrapper {
        padding-left: 200px;
    }
}

.ctaWrapper {
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.ctaLink {
    background: linear-gradient(to bottom right, var(--accent), #7da1e3);
    border: 0;
    border-radius: 12px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: DMsans, DMsans-fallback;
    padding: 6px 12px;
    margin-left: 6px;
    font-size: 20px;
    font-weight: 600;
    outline: transparent;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .2s ease-in-out;
    user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}

.ctaLink:hover {
    color: #FFFFFF;
}

.ctaLink:focus {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(186, 212, 254, 0.5), .125rem .125rem 1rem rgba(41, 227, 248, 0.5);
}

.ctaLink:hover {
    box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(186, 212, 254, 0.5), .125rem .125rem 1rem rgba(41, 227, 248, 0.5);
    transition: "background 1s, color 1s",
}

@media only screen and (max-width: 600px) {
    .ctaLink {
        padding: 10px 24px;
    }
}

@media only screen and (min-width: 601px) {
    .ctaLink {
        padding: 10px 24px;
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) {
    .ctaLink {
        padding: 10px 24px;
        font-size: 32px;
    }
}


@media only screen and (min-width: 992px) {
    .ctaLink {
        padding: 10px 24px;
        font-size: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    .ctaLink {
        padding: 10px 24px;
        font-size: 32px;
    }
}