body{
    background-color: white;
}
body div{
    background-color: white;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    font-size: 23px;
    border: 1px solid white;
    padding: 40px;
    text-align: center;
    margin-left: 5%;
    margin-right: 5%;
    color: green;
}
body div h2{
    color: green;
}
body button{
    background: white;
    border: 0;
    outline: none;
    padding: 15px 35px;
    color: blue;
    margin-top: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: right;
}
.Haftung{
    text-align: center;
}
.Blocksatz{
    text-align: justify;
}
.Linksbündig{
    text-align: left;
}
.BlocksatzKlein{
    font-size: 18px;
    text-align: justify;
}
.Haftung{
    font-size: 12px;
    text-align: justify;
}
.MarkenSchriftart{
    font-family: 'poppins', sans-serif;
    font-size: 69px;
}
.Impressum{
    font-size: 12px;
}
.rechts{
    margin-left: 90%;
    border: 2px solid white;
    margin-right: 0%;
    height: 100%;
    margin-top: 0%;
    border: #0088ff;
}
.links{
    margin-right: 90%;
    border: 2px solid white;
    margin-left: 0%;
    height: 100%;
    margin-top: 0%;
    border: #0088ff;
}
th, td{
    text-align: left;
    width: 20%;
}
th{
    background-color: green;
    color: white;
    font-family: 'poppins', sans-serif;
    font-size: 23px;
}
td{
    background-color: white;
    color: green;
    font-family: 'poppins', sans-serif;
    font-size: 26px;
}
.gallery{
    position: relative;
    display: flex; 
    justify-content: center; 
    align-items: center;
    height: 620px;
}
.gallery figure{
    position: absolute;
    top: 0%;
    z-index: 1;
}
.gallery figure{
    animation: wechseln 15s infinite;
}
.gallery:hover figure{
    animation-play-state: paused;
}
@keyframes wechseln{
      0% {opacity: 0;}
     20% {opacity: 1;}
     40% {opacity: 1;}
     60% {opacity: 0;}
    100% {opacity: 0;}
}
.gallery figure:nth-of-type(2){
    animation-delay: 5s;
}
.gallery figure:nth-of-type(3){
    animation-delay: 10s;
}