@charset "utf-8";

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lobster Two';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lobster-two-v22-latin-italic.eot'); /* IE9 Compat Modes */
  src: url('../fonts/lobster-two-v22-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/lobster-two-v22-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/lobster-two-v22-latin-italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/lobster-two-v22-latin-italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/lobster-two-v22-latin-italic.svg#LobsterTwo') format('svg'); /* Legacy iOS */
}

/* alfa-slab-one-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: 'Alfa Slab One';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/alfa-slab-one-v21-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/alfa-slab-one-v21-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/alfa-slab-one-v21-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/alfa-slab-one-v21-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/alfa-slab-one-v21-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/alfa-slab-one-v21-latin-regular.svg#AlfaSlabOne') format('svg'); /* Legacy iOS */
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
	position: relative;
	max-width: 60rem;
	margin: 1rem auto;
	overflow: hidden;
    background: url(../images/hintergrund.png) no-repeat;
    background-size: 100%;
    padding: 2rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

h1 {
    font-size: 1.75rem;
    text-align: center;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}
h1 small {
    font-size: 1.2rem;
}

h2 {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

h3 {
    font-size: 3rem;
    font-family: 'Lobster Two';
    font-style: italic;
    font-weight: 400;
    text-align: center;
}

h4 {
    font-family: 'Alfa Slab One';
    font-size: 2rem;
    font-weight: 300;
    color: #007aa5;
    text-align: center;
    letter-spacing: 0.3rem;
}

.center {
    text-align: center;
}

p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

ul {
    margin: 0 0 0 1.5rem;
    list-style: none;
}

ul li:before {
    content: "\2022";
    color: #007aa5;
    font-size: 3rem;
    float: left;
    margin: -1.5rem 0 0 -1.5rem;
}

ul li {
    margin-bottom: 0.1rem;
}

article {
    display: flex;
    gap: 1rem;
}

article section {
    width: 50%;
}

.width60 {
    width: 60%;
}

.width40 {
    width: 40%;
}

a.web {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
}

footer {
    margin-top: -1rem;
}

@media only screen and (max-width: 59rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: url(../images/hintergrund-2.png) no-repeat;
        background-size: cover;
    }
    body {
        font-size: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    ul li {
        margin-bottom: 0.2rem;
    }

    p {
        margin-bottom: 1rem;
    }

    article {
        flex-direction: column;
        gap: 0;
    }

    article section {
        width: 100%;
    }

    .width40,
    .width60 {
        width: 70%;
    }

    h3,
    h4 {
        margin: 1.5rem 0;
    }

    h1 {
        margin: 1.5rem 0;
    }

    h2 {
        margin-bottom: 0.5rem;
    }

    footer {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    a.web {
        color: #000;
    }

}

@media only screen and (max-width: 48rem) {

}

@media only screen and (max-width: 40rem) {

}

