body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-image 1s ease-in-out;
}body {
  background: url('../assets/genx-retro-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.logo-fade {
  animation: fadeLogo 6s infinite;
  max-width: 30vw;
  height: auto;
  opacity: 0.2;
  filter: blur(1px);
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@keyframes fadeLogo {
  0% { opacity: 0.1; }
  50% { opacity: 0.6; }
  100% { opacity: 0.1; }
}

.entry-container {
  position: relative;
  z-index: 1;
}

.question-box {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff;
  max-width: 500px;
  margin: auto;
}

label {
  display: block;
  margin: 0.5rem 0;
  cursor: pointer;
}

button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #00ffff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

#feedback {
  margin-top: 1rem;
  font-style: italic;
}