@font-face {
    font-family: 'Main';
    src: url('main.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #1D1D1D;

}

a:hover {
    color: rgba(0,0,0,.7);
}

.stage {
    display: grid;
    position: relative;
    width: 100%;
    min-height: 100dvh;
    grid-template-rows: 1fr auto;
}

.stage--half {
    min-height: 50dvh;
}

.stage__bg {
    grid-row: 1/-1;
    grid-column: 1;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.stage__logo {
    grid-row: 1 / 2;
    grid-column: 1;
    z-index: 2;
    place-self: center;
    padding: 40px;
}

.stage__logo img{
    max-width: 100%;
    height: 250px;
    object-fit: contain;
}

.menu {
    font-family: 'Main';
    font-style: normal;
    font-weight: 400;
    font-size: 26px;
    line-height: 130%;
    grid-row: 2/3;
    grid-column: 1;
    place-self: end stretch;
    display: flex;
    padding: 26px;
    flex-flow: column;
    align-items: center;
    text-align: center;
    row-gap: 20px
}



.content {
    background-color: white;
    padding: 30px;
    text-align: center;

    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #101F36;
}

.footer {
    background-color: white;
    padding: 30px;
    text-align: center;

    font-family: 'Helvetica Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #101F36;
}

.footer span {
    white-space: nowrap;
}

h2 {
    font-family: 'Main';
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
}
h3 {
    font-family: 'Main';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
}
ul {
    list-style-type:none;
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .footer {
        padding: 60px;
    }
    .stage__logo {
        padding: 80px;
    }
    .menu {
        padding: 80px;
        flex-flow: row;
        align-items: center;
        text-align: left;
        justify-content: space-between;
    }
    .imprint-link {
        display: block;
    }

    .stage__logo img{
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (min-width: 1024px) {
    .menu {
        padding: 120px 150px;
    }
}