/* inter-300 - 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: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/inter-v19-latin-300.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-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: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/inter-v19-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-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: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/inter-v19-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-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: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-v19-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    letter-spacing: 0.025em;
}

div {
    margin: 0;
    padding: 0;
}

.content {
    width: 100vw;
    min-height: 100vh;
    background-color: #808080;
    display: flex;
    justify-content: center;
    padding-top: 75px;
    padding-bottom: 75px;
}

.content-inner {
    width: 960px;
    height: 600px;
    background-color: white;
    box-shadow: 2px 5px 15px #00000033;
    display: flex;
    gap: 20px;
}

.image-container {
    width: 65%;
    background-image: url("images/bg_skyscaper.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: inset 0px 50px 100px #ffffff, inset 0px -50px 100px #fffff9, inset -30px -150px 100px #ffffff99, inset 30px 150px 100px #ffffff99;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 20px;
}

.contact-container {
    background-color: #EEEEF2;
    width: 35%;
    padding: 20px;
    text-align: center;
}

.contact-container img {
    max-width: 100%;
    margin-bottom: 20px;
}

h1,
h2,
p {
    margin-top: 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
}

a {
    color: #122362;
    font-weight: 500;
    text-decoration: none;
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
}

h2,
h1.h2 {
    font-size: 1.125rem;
    font-weight: 500;
}

.small {
    font-size: 0.875rem;
}

.welcome {
    font-size: 2rem;
    margin-bottom: 0.25em;
}

hr {
    border-width: 1px;
    margin: 1.5rem auto;
    width: 50%;
}

.content-inner.imprint {
    background-color: #EEEEF2;
    padding: 20px;
    flex-direction: column;
    height: auto;
    gap: 0;
}

.content-inner.imprint .contact-container {
    width: unset;
}

.content-inner.imprint .contact-container img {
    width: 300px;
}

.content-inner.imprint .page-content {
    width: 500px;
    margin: 0 auto;
}