/* source-sans-3-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: 'Source Sans 3';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/source-sans-3-v18-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('fonts/source-sans-3-v18-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* source-sans-3-500 - 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: 'Source Sans 3';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/source-sans-3-v18-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('fonts/source-sans-3-v18-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* source-sans-3-600 - 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: 'Source Sans 3';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/source-sans-3-v18-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('fonts/source-sans-3-v18-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

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

body {
    background-color: #eeeeee;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Source Sans 3", sans-serif;
    color: #212121;
    text-align: center;
}

.logo {
    position: absolute;
    top: 15px;
    left: 30px;
    width: 200px;
}

.square {
    background-color: #ffffff;
    border-radius: 24px;
    height: 500px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.square > * {
    margin: 10px 20px;
}

.bigger-square {
    height: 520px;
    width: 520px;
}

.heading-text {
    font-size: 20px;
    font-weight: 600;
}

.detailed-text {
    font-size: 16px;
}

.pictogram {
    width: 160px;
    height: 160px;
    margin: 0;
}

a:link, a:visited, a:active {
    color: #006C7B;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #006C7B;
    text-decoration: underline;
    font-weight: 600;
}

.mail {
    margin-left: 4px;
}

.button {
    background-color: #006C7B;
    color: white !important;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500 !important;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none !important;
}

.button:hover {
    background-color: #004b56;
}
