body {
    background: #fff;
}

body, html {
    font-family: 'Roboto';
    height: 100%;
}

/* roboto-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/roboto-v48-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/roboto-v48-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.page {
    max-width: 600px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-direction: column;
}

.logo {
    width: 300px;
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
}

.subtitle {
    margin-top: 40px;
    font-size: 22px;
    text-align: center;
}

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

a.call-btn {
    display: flex;
    margin-top: 30px;
    padding: 20px 25px;
    background: #D8232A;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    align-items: center;
    border-radius:4px;
}

.call-btn svg {
    display: flex;
    margin-right: 10px;
}



a.imprint, #impressum a {
    text-decoration: none;
    color: #D8232A;
}

footer {
    margin-bottom: 40px;
}