:root {
    --splash-height: 60em;
    --main-bg-color: #0a1027;
    --main-font-color: #e5e5e5;
    --max-content-width: 900px;
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: var(--main-font-color);
    font-size: 13px;
    background-color: var(--main-bg-color);
    font-family: 'Open Sans', sans-serif;
}

.content p, .content li {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.pure-g [class*="pure-u"] {
    /* for whatever funny reason, they overwrite this */
    font-family: 'Open Sans', sans-serif;
}

.l-box {
    padding: 0.75em 0.5em;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: var(--main-font-color);
    font-family: 'Permanent Marker', cursive;
    font-weight: normal;
}

hr {
    color: var(--main-font-color);
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}

.schick {
    width: 100%;
}

.schick img {
    width: 100%;
    border-radius: 0.5vmin;
}

a {
    color: #FFF;
    font-weight: bold;
}

.pure-button {
    background-color: #1f8dd6;
    color: var(--main-font-color);
    padding: 0.5em 2em;
    border-radius: 5px;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}


.splash-container {
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: var(--splash-height);
    left: 0;
}

.splash-container h1 {
    font-size: 300%;
    line-height: 1em;
}

@media (min-aspect-ratio: 883/1181) {
    .splash-bg {
        background-size: 100% auto;
    }
}

@media (max-aspect-ratio: 883/1181) {
    .splash-bg {
        background-size: auto 100%;
    }
}


.splash-bg {
    height: 100vh;
    width: 100%;
    position: fixed !important;
    background-image: url("../img/banner.jpg");
    background-position: 50%;
    background-repeat: no-repeat;
    /* quick fix for super long screens where the banner image does not fit 88% of the viewport */
    background-color: #0a1027;
    filter: blur(0.65vh) brightness(70%);
}

.splash {
    /* absolute center .splash within .splash-container */
    width: 90%;
    max-width: var(--max-content-width);
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    text-shadow: 0 0 0.25em var(--main-bg-color);
}
.splash .pure-button {
    text-shadow: none;
}
/* This is the main heading that appears on the blue section */
.splash-head {
    font-size: 20px;
    font-weight: bold;
    color: white;
    border: 3px solid white;
    padding: 1em 1.6em;
    border-radius: 5px;
    line-height: 1em;;
}

/* This is the subheading that appears on the blue section */
.splash-subhead {
    color: white;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/*
 * -- CONTENT STYLES --
 * This represents the content area (everything below the blue section)
 */
.content-wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    top: var(--splash-height);
    width: 100%;
    min-height: 12%;
    z-index: 2;
    background: linear-gradient(180deg, #0a102700 0, #0a1027FF 10em, #0a1027FF 100%);
    padding-top: 10em;
    padding-bottom: 5em;
}

/* We want to give the content area some more padding */
.content {
    max-width: var(--max-content-width);
    margin: 0 auto;
}

/* This is the class used for the main content headers (<h2>) */
.content-head {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 2em 0 1em;
}

/* This is a modifier class used when the content-head is inside a ribbon */
.content-head-ribbon {
    color: white;
}

/* This is the class used for the content sub-headers (<h3>) */
.content-subhead {
    color: #1f8dd6;
}
    .content-subhead i {
        margin-right: 7px;
    }

/* This is the class used for the dark-background areas. */
.ribbon {
    background: #2d3e50;
    color: #aaa;
}

/* This is the class used for the footer */
.footer {
    background: #111;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.warning {
    color: #E99C3F;
    font-weight: bold;
}

/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 * On tablets and other medium-sized devices, we want to customize some
 * of the mobile styles.
 */
@media (min-width: 48em) {

    /* We increase the body font size */
    body {
        font-size: 16px;
    }

    /* We can align the menu header to the left, but float the
    menu items to the right. */
    .home-menu {
        text-align: left;
    }
        .home-menu ul {
            float: right;
        }

    /* We increase the height of the splash-container */
/*    .splash-container {
        height: 500px;
    }*/

    /* We decrease the width of the .splash, since we have more width
    to work with */
    .splash {
        width: 70%;
        height: 40%;
    }

    .splash-head {
        font-size: 250%;
    }


    /* We remove the border-separator assigned to .l-box-lrg */
    .l-box-lrg {
        border: none;
    }

}

/*
 * -- DESKTOP (AND UP) MEDIA QUERIES --
 * On desktops and other large devices, we want to over-ride some
 * of the mobile and tablet styles.
 */
@media (min-width: 78em) {
    /* We increase the header font size even more */
    .splash-head {
        font-size: 300%;
    }
}
