* {
    color: inherit;
    box-sizing: border-box;
}

html,
body,
.page {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: WhiteSmoke;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 1em;
    line-height: 1.4;
}

.page {
    display: flex;
    flex-direction: column;
    width: 1000px;
}

.header {
    display: flex;
    color: white;
    background-color: SteelBlue;
    padding: 15px 25px 15px 25px;
}

.logo-container {
    height: 50px;
    width: 50px;
    margin-right: 20px;
}

.page-title {
    font-size: 1.5em;
    font-weight: bold;
}

.page-subtitle {
    font-size: 0.9em;
}

.navigation {
    display: flex;
    background-color: LightSteelBlue;
    justify-content: space-between;
    padding: 10px 25px 5px 25px;
}

/* TODO: Remove if all links point to actual sites.  */
.navigation a,
.footer a{
    text-decoration: none;
}

.menu-categories a{
    padding: 0px 5px 0px 0px;
}

.main {
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: White;
    max-height: 100%;
    overflow: auto;
    padding: 15px 70px 15px 70px;
}

.title {
    font-weight: bold;
}

.message {
    line-height: 1.5;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: LightSteelBlue;
    padding: 15px 0px 15px 0px;
}

.copyright,
.footer a {
    opacity: 60%;
    font-size: 0.9em;
}

.copyright,
.gdpr,
.impressum {
    padding: 0px 5px 0px 0px;
}

.non-selectable {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media only screen and (max-width: 1000px) {

    .page {
        max-width: 100%;
    }

}

@media only screen and (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .page {
        max-width: 100%;
    }

    .main {
        padding: 15px 10px 15px 10px;
    }

    .footer {
        padding: 5px 0px 5px 0px;
    }

}
