/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: monospace, Arial, sans-serif;
}

/* Text in der Mitte */
.message {
  position: absolute;
  z-index: 2;
  color: red;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,0,0,0.8);
}

/* Regen Animation */
.rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to bottom, rgba(255,255,255,0.2) 2px, transparent 2px);
  background-size: 2px 100px;
  animation: rain 0.5s linear infinite;
  z-index: 1;
}

@keyframes rain {
  from {
    background-position: 0 -100px;
  }
  to {
    background-position: 0 0;
  }
}