* {
    font-family: "Roboto Condensed", sans-serif;
}

body {
    padding: 0;
    margin: 0;
}

/*
 * https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flexible_box_layout/Aligning_items_in_a_flex_container
 */
.splash {
    display: flex;
    align-items: center;
    justify-items: center;
    height: 100vh;
    background: url('homepic.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #ddd;
    background-position: center;
}

.splash-box {
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 1em;
    font-size: 3em;
    margin: 1em;
    text-shadow: 0px 0px 11px #000000;
}

.splash h1 {
    margin: 0;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
}
