@font-face {
    font-family: 'min';
    font-style: normal;
    font-weight: normal;
    src: url('min.woff') format('woff');
}

body {
    font-family: min, serif;
    background-image: url('background.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: 60% 50%;
    color: #fff;
    background-color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    text-shadow: 0px 0px 10px #000;
}

div#content {
    margin: 0 auto;
    max-width: 732px;
    width: min(732px, 100%);
    display: flex;
    flex-direction: column;
    flex: 1;
}

div#floating {
    display: flex;
    flex-direction: column;
    width: 66%;
    justify-content: center;
    margin-left: 1rem;
}

div#logo {
    width: 33%;
    margin: 0 auto;
    margin-top: 5rem;
}

img#logoimage {
    width: 100%;
    filter: drop-shadow(0px 0px 10px #000);
}

a#logolink {
    display: flex;
    align-items: center;
}

div#message {
    font-size: 24pt;
    margin-top: 5rem;
    margin-bottom: 1rem;
}

div#contact {
    font-size: 16pt;
}

@media (max-width: 732px) {
    div#message {
        font-size: 20pt;
    }

    div#contact {
        font-size: 14pt;
    }
}

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

a:hover {
    text-decoration: underline;
}

div#footer {
    font-size: 14pt;
    text-align: center;
    margin-bottom: 1rem;
}

h1#imprint {
    margin-top: 3rem;
}

div#text {
    margin: 0 1rem;
}

p#source {
    text-align: center;
}

p {
    margin-top: 0;
    font-size: 14pt;
}

h2 {
    margin-bottom: 0.5rem;
}