body {
  background-color: #111;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  padding: 50px 10px;
  margin: 0;
}

h1 {
  color: #f00;
  font-size: 2em;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.countdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #333;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.time-box {
  background: #000;
  padding: 15px;
  border-radius: 5px;
  box-shadow: inset 0 0 10px #f00;
  min-width: 70px;
  flex: 1 1 60px;
}

.digit {
  font-size: 2.5em;
  color: #f00;
  display: block;
  text-shadow: 0 0 10px red;
}

.label {
  font-size: 0.8em;
  color: #aaa;
  margin-top: 5px;
  display: block;
  letter-spacing: 1px;
}

.colon {
  font-size: 2.5em;
  color: #f00;
  text-shadow: 0 0 10px red;
  align-self: center;
  line-height: 1;
}

@media (max-width: 480px) {
  .countdown-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .time-box {
    width: 80%;
    padding: 15px;
  }

  .digit {
    font-size: 2.5em;
  }

  .label {
    font-size: 0.9em;
  }

  .colon {
    display: none; /* Doppelpunkte ausblenden */
  }

  h1 {
    font-size: 1.4em;
    padding: 0 10px;
    text-align: center;
  }

  #spruch {
    font-size: 0.9em;
    padding: 0 15px;
  }
}

.footer-spruch {
  position: fixed;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.1em;
  color: #aaa;
  padding: 10px 15px;
  pointer-events: none;
  z-index: 1000;
  background: transparent;
}



