/* Pixeliger Retro-Look */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
  box-sizing: border-box;
  margin: 0; padding: 0;
  font-family: 'Press Start 2P', cursive, monospace;
  user-select: none;
}

body {
  background: linear-gradient(180deg, #d6c1f7, #654ea3, #3b2f63);
  background-repeat: repeat;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  overflow-x: hidden;
}

/* Container Rahmen und Schatten von Gelb zu Neonpink */
.container {
  background-color: rgba(0,0,0,0.7);
  border: 4px solid #ff2ecc;
  padding: 30px;
  border-radius: 8px;
  max-width: 510px;
  box-shadow:
    inset 0 0 10px #ff2ecc,
    0 0 12px #ff2ecc;
}

/* Überschrift Schatten */
h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 #330033, 4px 4px 0 #ff00ee;
  margin-top: 15px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 #330033, 4px 4px 0 #ff00ee;
}

p {
  text-align: center;
  font-size: 12px;
  margin-bottom: 25px;
}

/* Button Hintergrund und Schatten jetzt neonpink */
button {
  background: linear-gradient(45deg, #ff00ee, #d000bb);
  border: 3px solid #770066;
  padding: 15px 5px;
  color: #aa0088;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
  box-shadow:
    inset 0 4px 0 #ffaaff,
    inset 0 -4px 0 #aa0099;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: 'Press Start 2P', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
}

button:hover {
  background: linear-gradient(45deg, #ff33ff, #e600cc);
  box-shadow:
    inset 0 6px 2px #ff99ff,
    inset 0 -3px 5px #cc33cc;
}

button:active {
  background: #aa0099;
  box-shadow: inset 0 0 6px #660066;
}

.jeannine {
  width: 100px;
  height: 300px;
  z-index: 14;
  background-size: cover; /* Bild wird skaliert, um das Element auszufüllen */
  background-position: center; /* Bild wird zentriert */
  background-repeat: no-repeat; /* Bild wird nicht wiederholt */
  background-image: url('jeannine.png');
  position: absolute;

  /* Startposition links außerhalb - optional */
  transform: translateX(-100vw);
  
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100vw); /* komplett links außerhalb */
  }
  100% {
    transform: translateX(100vw); /* an Zielposition */
  }
}

/* Klasse, die die Animation startet */
.animate-slide {
  animation: slideInFromLeft 3s forwards;
}


#timer {
  margin: 12px 0 22px 0;}

  #countdown {
  margin: 12px 0 22px 0;}
















