body {
  font-family: Celestia Redux Alternate;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fcd4e3;
  text-align: center;
  flex-direction: column;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 30px;
  background: transparent;
}

.logo {
  width: 200px;
  height: auto;
  margin-top: 5px;
}

main {
  padding-top: 100px; /* Anpassen je nach tatsächlicher Logo-Höhe */
}

/* Container für Startseite */
#startScreen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* zentriert vertikal */
  height: 100vh;
}

/* Regenbogen-Glitzer-Hover für h1 */
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  background-clip: text;
  -webkit-background-clip: text;
  color: #000;
  position: relative;
  display: inline-block;
}

h1:hover {
  background-image: linear-gradient(
    90deg,
    #ff00cc,
    #ffcc00,
    #00ffcc,
    #3366ff,
    #cc00ff,
    #ff00cc
  );
  background-size: 300% auto;
  color: transparent;
  -webkit-background-clip: text;
  animation: rainbow-glow 3s linear infinite;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
              0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes rainbow-glow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

.question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 600px;
}

.question {
  margin: 20px 0;
  font-size: 1.5rem;
}

input[type="range"] {
  width: 80%;
}



button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  background-color: #D73F6E;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #F276B7;
}
.scale {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.scale input[type="radio"] {
  display: none;
}

.scale label {
  display: inline-block;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Farben & Größen: mint → grau → lila */
.scale label:nth-of-type(1) {
  background-color: #98f5e1;
  width: 30px;
  height: 30px;
}
.scale label:nth-of-type(2) {
  background-color: #b2f0e8;
  width: 26px;
  height: 26px;
}
.scale label:nth-of-type(3) {
  background-color: #cccccc;
  width: 22px;
  height: 22px;
}
.scale label:nth-of-type(4) {
  background-color: #999999;
  width: 18px;
  height: 18px;
}
.scale label:nth-of-type(5) {
  background-color: #c6afe7;
  width: 22px;
  height: 22px;
}
.scale label:nth-of-type(6) {
  background-color: #c58df5;
  width: 26px;
  height: 26px;
}
.scale label:nth-of-type(7) {
  background-color: #a259ff;
  width: 30px;
  height: 30px;
}

/* Auswahl-Effekt */
.scale input[type="radio"]:checked + label {
  outline: 2px solid white;
  box-shadow: 0 0 0 2px black;
  transform: scale(1.1);
}

.corner-pony {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 240px;
  height: auto;
  z-index: 500;
  pointer-events: auto;
  transition: transform 0.3s ease;
  transform-origin: bottom left; 
}

.corner-pony:hover {
  transform: scale(1.2);
  cursor: pointer;
}

@media (max-width: 768px) {
  .corner-pony {
    width: 120px;
  }
}

.pony-bottom-left:hover {
  transform: scale(1.2);
}