@import url("https://fonts.googleapis.com/css?family=Open+Sans");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

html {
    font-size: 16px;
    height: 100%;
    margin: 0;
}

* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    outline: none;
    box-sizing: border-box;
}

body {
    height: 100%;
    margin: 0;
    background: linear-gradient(to right, #004666, #006387);
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 18px 50px;
}

.header {
    display: flex;
    justify-content: space-around;
}

.header img {
    padding-right: 6px;
}

.flex-row-center {
    display: flex;
    justify-content: center;
}

.flex-self-center {
    align-self: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.content {
    display: flex;
    flex-direction: column;
    max-width: 568px;
    margin-top: 90px;
    text-align: center;
}

.content .region-headline {
    margin-top: 4em;
    font-size: 16px;
    font-weight: 500;
}

.content .region {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.content .region ul li {
    min-width: 265px;
}

@media (max-width: 768px) {
    .content .region {
        flex-direction: column;
    }
}

@media (max-width: 512px) {
    .content, .content .region-headline {
        margin: 0;
    }

    .content h6 {
        display: none;
    }

    .header img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 320px) {

    .header img {
        width: 100px;
        height: 100px;
    }

    .content .region li a {
        font-size: 13px;
    }
}

.content .region li {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    font-size: 14px;
}

.content .region li:hover {
    border-color: white;
    box-shadow: 0 0 30px #fff;
}

.content .region li a {
    display: block;
    padding: 14px 40px;
}

.content .region li a:hover {
    text-decoration: none;
}

.footer {
    display: flex;
    justify-content: center;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 30px #fff;

}
