body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    font-size: 0,5vw;
    display: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container1 {
    position: relative;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.container2 {
    position: relative;
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.centered-image-container {
    max-width: 100%; /* Maximale Breite des Bildes */
}

.rotating-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto; /* Zentrierung des Bildes horizontal */
    animation: spin 6s linear infinite; /* Dauer einer Umdrehung plus Pause */
}

@keyframes spin {
    0%, 50% {
        transform: rotateY(0deg); /* Startposition und Haltepunkt */
    }
    75%, 100% {
        transform: rotateY(360deg); /* Vollst�ndige Umdrehung */
    }
}

.block {
   width: 65%;
   padding: 10px;
   margin: 0 auto;
   text-align: center;
   border: 2px solid #009656;
   border-radius: 10px;
   background-color: #fff;
   box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
   color: #009656;
}

h3 {
   color: #009656;
}

p {
   font-size: 18px;
   color: #009656;
}

a {
   color: #8bc34a;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

hr{
   border: none;
   height: 2px;
   background-color: #009656;
   width: 75%;
}

.logo{
   width: 210px;
   height: auto;
   vertical-align: middle;
}
   