@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    line-height: 1.5;
    font-weight: 400;
}

.container {
    margin-top: 3em;
    width: 100%;
    max-width: 600px;
}

section {
    margin-bottom: 3em;
}

a, a:active, a:visited, a:focus, a:hover {
    text-decoration: underline;
    color: #000;
}

a:hover {
    text-decoration: none;
}

.text-right {
    text-align: right;
}

.container p {
    text-align: justify;
}

section p::first-letter {
    font-size: 1.5rem;
}

#logo {
    display: block;
    margin: 0 auto;
    max-width: 450px;
    height: auto;
}

blockquote {
    margin: 0 0 1rem;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote q {
    quotes: "„" "”";
    font-size: 1rem;
    font-style: italic;
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "— ";
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.footer {
    padding: 10px;
    text-align: center;
    font-size: 0.875rem;
    width: 100%;
    bottom: 0;
}

@media (max-width: 600px) {
    .container {
        padding: 0 1em;
    }

    .blockquote {
        font-size: 1rem;
    }

    #logo {
        width: 50vw;
    }

    .footer {
        font-size: 0.75rem;
    }
}