/* Grund-Setup */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #831811;
}
@font-face {
    font-family: Regular;
    src: url("fonts/regular.ttf");
    font-display: swap;
}
@font-face {
    font-family: Bold;
    src: url("fonts/bold.ttf");
    font-display: swap;
}
* {
    font-family: Regular;
  box-sizing: border-box;
}
.Fix {
    position: fixed;
    right: 20px;
    top: 0px;
    background-color: #831811;
    border-radius: 0px 0px 20px 20px;
    width: 70px;
    padding: 20px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 14px 5px rgba(0, 0, 0, 0.35);
}
.Fix svg {
    display: block;
    width: 100%;
    height: auto;
}
.sponsoren {
    padding-left: 20px;
    padding-right: 20px;
}
.sponsoren .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sponsoren .grid div {
    width: 10%;
    padding: 5px;
}
.sponsoren .grid div img {
    display: block;
    width: 100%;
}
.sponsoren .gridriesig {
    margin-bottom: 50px;
}
.sponsoren .gridriesig div {
    width: 25%;
}
.sponsoren .gridgross {
    margin-bottom: 50px;
}
.sponsoren .gridgross div {
    width: 17%;
}
.sponsoren .gridmittel {
    margin-bottom: 50px;
}
.sponsoren .gridmittel div {
    width: 15%;
}
.sponsoren .gridklein div {
    width: 11%;
}
h3 {
    color: #FFF;
    text-align: center;
    font-size: 30px;
}
/* Header mit mittigem Logo */
header {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-image: url(bg.jpg);
    background-size: cover;
    background-position: center center;
}
h1 {
    font-size: 50px;
    padding: 0px;margin: 0px;
    margin-bottom: 10px;
    line-height: 1;
}
.logo {
    width: 400px;
}
.logo img {
    width: 100%;
}
p {
    font-size: 22px;
    padding: 0px;
    margin: 0px;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: #000;
}
.hero {
    position: relative;
}
.hero:after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -100px;
    height: 100px;
    background-image: url(content.svg);
    background-repeat: repeat-x;
    background-size: auto 100px;
}
/* Content Layout */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    align-items: center;
}

.hero {
    text-align: center;
    padding: 20px 50px;
    background: #831811;
    color: white;
}
.image-block {
    text-align: center;
    display: block;
    width: 100%;
}.image-block img {
    -webkit-box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.35); 
box-shadow: 0px 0px 14px 5px rgba(0,0,0,0.35);
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #FFF;
    color: #999;
    margin-top: 50px;
}
footer a {
    font-size: 14px;
}

@media only screen and (max-width:900px) {
    .sponsoren .gridriesig div {
        width: 40%;
    }
    .sponsoren .gridgross div {
        width: 30%;
    }
    .sponsoren .gridmittel div {
        width: 20%;
    }
    .sponsoren .gridklein div {
        width: 15%;
    }
}
@media only screen and (max-width:600px) {
    header {
        height: 40vh;
    }
    .logo {
        width: 200px;
    }
    h1 {
        font-size: 30px;
    }
}

@media only screen and (max-width:500px) {
    .sponsoren .gridriesig div {
        width: 50%;
    }
    .sponsoren .gridgross div {
        width: 33.33%;
    }
    .sponsoren .gridmittel div {
        width: 25%;
    }
    .sponsoren .gridklein div {
        width: 20%;
    }
}