body {
font-family: "Open Sans", sans-serif;
background: #111;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
text-align: center;
}

video {
  max-width: 80%;
  max-height: 60vh;
  margin-bottom: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

video.playing {
  animation: borderPulse 1s infinite alternate ease-in-out;
}

@keyframes borderPulse {
  0% {
    border-color: rgba(0,102,0,0.2);
    box-shadow: 0 0 10px rgba(0,102,0,0.2);
  }
  50% {
    border-color: rgba(0,102,0,0.8);
    box-shadow: 0 0 25px rgba(0,102,0,0.8);
  }
  100% {
    border-color: rgba(0,102,0,0.2);
    box-shadow: 0 0 10px rgba(0,102,0,0.2);
  }
}

video:hover {
  filter: brightness(1.2);
}

button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
border: none;
background-color: #333333;
color: white;
transition: all 0.2s ease;
}

button:hover {
background-color: #666666;
transform: scale(1.2);
}

.home {
  position: fixed;
  top: 30px;
  left: 30px;
  width: 80px;
  height: auto;
  z-index: 1000;

  animation: pulse 2s infinite;
}

#snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.snowflake {
  position: absolute;
  top: -50px;
  color: white;
  user-select: none;
  pointer-events: none;
  font-size: 15px;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
  }
  100% {
    transform: translateY(100vh) rotate(360deg) translateX(50px);
  }
}
		
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 4px 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.45);
}

.heart {
    color: red;
    display: inline-block;
    animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); } /* Herz wird größer in der Mitte */
}