/* 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-v47-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

    /* roboto-800 - 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: 800;
    src: url('./fonts/roboto-v47-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* imperial-script-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: 'Imperial Script';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/imperial-script-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    margin: 0;
    padding: 0;
    font-family: Roboto;
}

.rounded-edge {
    clip-path: ellipse(75% 100% at top);
    background: #fab816;
    width: 100%;
    height: 40px;
}

.rounded-edge .wrapper {
    text-align: right;
}

.rounded-edge a {
    color: #000;
    font-size: 14px;
    line-height: 34px;
    text-decoration: none;
}

.rounded-edge a:hover {
    text-decoration: underline;
}

.wrapper {
    width: 1000px;
    margin: 0 auto;
    /*background: #ddd;*/
}

header {
    padding-top: 15px;
    padding-bottom: 15px;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 4px 0 4px;
}

header ul li:first-child {
    margin-left: 0;
}

header ul li a {
    text-decoration: none;
    color: #000;
}

header ul li a:hover {
    text-decoration: underline;
}

#content .textcontent {
    display: flex;
    gap: 40px;
}

.textcontent {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 100px;
}

.textcontent p:first-child {
    margin-top: 0;
}

.textcontent a {
    font-weight: bold;
    text-decoration: none;
    color: #0097c1;
}

.textcontent a:hover {
    text-decoration: underline;
}

.hintergrund {
    height: 1100px;
    width: 100%;
    background-image: url(img/hoke3.jpg);
    background-size: cover;
    background-position: top center;
}

.hintergrund-weihnachten {
    height: 700px;
    width: 100%;
    background-image: url(img/hoke-weihnachten.jpg);
    background-size: cover;
    background-position: top center;
}

p.weihnachten {
    font-family: 'Imperial Script';
    font-size: 48px;
    text-align: center;
}

.impressum #content .textcontent {
    text-align: left;
}

@media only screen and (max-width:1000px) { 
    .wrapper {
        width: 90%;
        margin-left: 5%;
    }

    header .wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }

    header ul {
        text-align: center;
        margin-bottom: 20px;
    }

    .hintergrund, .hintergrund-weihnachten {
        height: 300px;
    }

    #content .textcontent {
        flex-wrap: wrap;
        justify-content: center;
    }

    .textcontent {
        text-align: left;
    }
}