/*Allgemeine Einstellungen.*/
body {
    background: rgb(90, 0, 0);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px 10%;
}
div {
    background: rgb(27, 27, 27);
    box-shadow: rgb(255, 0, 0) 0rem 0rem 80px;
}
ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
/*Header*/
.banner {
    position: sticky;
    top: 0;
    z-index: 1;
    /*Beschreibt die Ebenenhöhe des Elements*/
}
.bannercontent {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1% 5%;
}
/*Oberster Teil der Website*/
.top {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 250px 0%;
}
.arrowbox {
    width: 15%;
}
h1 {
    font-size: 70px;
    margin: 0px 0px 50px 0px;
}
h2 {
    font-size: 25px;
    margin: 0px;
}
/*Haupteil der Website*/
.box {
    background: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 43px;
    border-style: solid;
    border-color: red;
    border-width: 2px;
    margin: 20% 15%;
}
.boxtext {
    margin: 4%;
}
/*Unterster Teil der Website*/
.footer {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
    white-space: nowrap;
}
.footerlinks {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
}
/*Inhalt GDRP und Legal Notice*/
.disclaimer {
    padding: 15%;
}
h3 {
    color: red;
    font-size: 25px;
}
h4 {
    color: rgb(182, 246, 255);
}
/*Inhalt Contact*/
.socialmedia {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 20% 0%;
}