body {
    background-color: black;
    color: white;
    align-items: center;
    text-align: center;
    font-family: Berkley;
    font-weight: normal;
    margin: 20px 45px 45px 45px;
}

h1 {
    text-align: center;
    border: white solid 3px;
    border-radius: 5px;
    padding: 10px;
    margin-left: 45px;
    margin-right: 45px;
    display: center;
}

h3 {
    text-align: center;
    border: white solid 3px;
    border-radius: 5px;
    padding: 10px;
    margin-left: 35px;
    margin-right: 35px;
    display: center;
}

.buttons {
    display: flex;
    padding: 10px;
    margin: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    border: solid white;
    margin: 10px;
    padding: 15px;
    display: flex;
    font-weight: bold;
    background-color: black;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-family: Berkley;
}

div {
    text-align: center;
    display: flex;
    align-items: center;
}

.img_klein { 
  animation: filter-animation 5s infinite;
  float: left;
  position: center;
  margin: 10px;
  padding: 10px;
}

#hirn {
  animation: filter-animation 5s infinite;
}

@keyframes filter-animation {
  0% {
    filter: sepia(0) saturate(2);
  }
  
  50% {
    filter: sepia(1) saturate(8);
  }
  
  100% {
    filter: sepia(0) saturate(2);
  }
}

#gruppe {
  animation: filter-animation 3s infinite;
}

@keyframes filter-animation {
  0% {
    filter: sepia(1) saturate(8);
  }
  
  50% {
    filter: sepia(0) saturate(2);
  }
  
  100% {
    filter: sepia(1) saturate(6);
  }
}

#rakete {
  animation: filter-animation 7s infinite;
}

@keyframes filter-animation {
  0% {
    filter: sepia(1) saturate(8);
  }
  
  50% {
    filter: sepia(0) saturate(2);
  }
  
  100% {
    filter: sepia(1) saturate(6);
  }
}

#zelle {
  animation: filter-animation 3s infinite;
}

@keyframes filter-animation {
  0% {
    filter: sepia(1) saturate(8);
  }
  
  50% {
    filter: sepia(0) saturate(2);
  }
  
  100% {
    filter: sepia(1) saturate(6);
  }
}

#katze {
  animation: filter-animation 5s infinite;
}

@keyframes filter-animation {
  0% {
    filter: sepia(0) saturate(8);
  }
  
  50% {
    filter: sepia(0) saturate(2);
  }
  
  100% {
    filter: sepia(1) saturate(6);
  }
}

.wiener {
    width: 300px;
    position: left;
    display: flex;
    flex-direction: flex-start;
    margin-left: 15px;
    clear: right;
    margin-top: 20px;
    text-align: justify-left;
}

span {
  float: right; 
  font-size: 25px;
} 

#wiener {
    float: left;
}

p {
    font-size: 23px;
    text-align: left;
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 0px;
    
}     


#hirn {
    justify-content: center;
    position: center;
}

#titel {
  .animated-text {
  font-family: monospace;
  overflow: hidden;
  height:1.1em;
  word-wrap: break-word;
  white-space: nowrap;
  animation: typing 4s steps(48) forwards;
} 

@keyframes typing {
   from {
      width: 0;
   }
   to {
      width: 48ch;
   }
}
}
.blink {
    animation-name: animation_blink;
    animation-timing-function: ease-in;
    animation-duration: 5s; 
    animation-iteration-count: infinite;            
}

@keyframes animation_blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }    
}

#clip-container {
  display: flex;
  padding: 10px;
  margin: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.main {
  margin-left: 40px;
  margin-right: 40px;
}

.video-container {
         position: relative;
         padding-top: 30px; /* For horizontal padding, adjust as needed */
         height: 0;
         overflow: hidden;
     }
     .video-container iframe {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         text-align: center
     }