/* src/styles/main.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}
.hero {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 2;
}
.hero-image {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button {
  width: 80%;
  padding: 1rem;
  margin: 0.5rem 0;
  font-size: 1.2rem;
  border-radius: 30px;
  border: 2px solid #1976d2;
  background:
    linear-gradient(
      90deg,
      #1976d2 60%,
      #64b5f6 100%);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  background: rgba(102, 68, 0, 0.98);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hide-splash {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}
.question-container {
  position: relative;
  z-index: 3;
  height: 100dvh;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.question-split {
  position: relative;
  z-index: 3;
  height: 100dvh;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.splash-gif {
  width: 240px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 900px) {
  .splash-gif {
    width: 160px;
  }
  .hero-image {
    width: 180px;
  }
}
@media (max-width: 600px) {
  .splash-gif {
    width: 100px;
  }
  .hero-image {
    max-width: 300px;
    width: 100vw;
  }
}
/*# sourceMappingURL=bundle.css.map */
