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

body {
    line-height: 1.7em;
    font-size: 13px;
}


.splash-container {
    background: url('./images/matthew-t-rader-P9O4ZnJrb84-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 800px;
    top: 0;
    left: 0;
    position: fixed !important;
}

.splash {
    width: 80%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 50px; left: 0; bottom: 0; right: 0;
    text-align: center;
    color: rgb(50,89,143);
    font-family: 'B612 Mono', monospace;
    font-size: 180%;
}

.content-wrapper {
    position: absolute;
    top: 87%;
    width: 100%;
    min-height: 10%;
    z-index: 2;
    background: white;

}

.content {
    padding: 1em 1em 3em;
}

.icon-link {
    display: block;
    margin: 0 auto;
    width: 0%;
}
/*
 * -- 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 decrease the width of the .splash, since we have more width
    to work with */
    .splash {
        width: 50%;
        height: 50%;
    }

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


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

}

