html {
    height: 100vh;
}

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

.container {
    margin: auto;

    max-width: 400px;
}

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

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

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


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

.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;
}

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

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

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

@media only screen and (max-width: 600px) {
    #title {
        font-size: 30px;
        padding-top: 0px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .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;
        padding-top: 60px;
    }

    .splash {
        height: 600px;
    }

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

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

    .splash {
        height: 600px;
    }

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


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

    .splash {
        height: 800px;
    }
}

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

.mailLink {
    color: var(--text-light);
    word-break: break-word;
}
