html, body {
  height: 100%;
  margin: 0;
  background-color: #6f42c1;
  color: white;
  overflow: hidden;
}

.guide-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.question-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem 3rem;
  border-radius: 15px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.question-text {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.answer-options .btn {
  margin: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-in-out;
}

.answer-options .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #6f42c1;
  transform: translateY(-2px);
  border-color: transparent;
}

.progress-indicator {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

#completion-message {
  display: none;
}

/*# sourceMappingURL=guide.css.map */
