body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  background-color: #000; /* Black background */
  color: #FFD700; /* Gold text color */
  margin: 0;
  padding: 0;
  height: 100%;
}

#landing-page {
  margin: 20px auto;
  max-width: 600px;
  padding: 20px;
  background-color: #222; /* Dark background */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.quiz-option {
  margin: 10px;
  text-align: center;
}

.quiz-option img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.quiz-option img:hover {
  transform: scale(1.1) rotate(180deg);
}

.reversed {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.quiz-option img:not(.reversed):hover {
  transform: scale(1.1);
}

.quiz-option span {
  display: block;
  margin-top: 10px;
  font-size: 1.2em;
  color: #FFD700;
}

a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #e0b200; /* Darker gold on hover */
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2; /* Adjust transparency if needed */
  pointer-events: none; /* Makes sure clicks go through */
}


/* Media query for mobile devices */
@media screen and (max-width: 600px) {
  .quiz-row {
    flex-direction: column;
    align-items: center;
  }

  .quiz-option img {
    width: 120px;
    height: 180px;
  }

  .quiz-option span {
    font-size: 1em;
  }
}