body {
  overflow: auto;
  color: #0b3d91;
}

#side-by-side {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 50vh;
}

div {
  background-size: cover;
  /* background-color: black; */
}

img {
  border-radius: 5%;
}

#gameOver {
  display: none;
  text-align: center;
}

.pearlescentBackground {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.pearlescentBackground::before {
  content: "";
  position: absolute;
  inset: -200px;
  background: linear-gradient(
      60deg,
      rgba(255, 120, 220, 0.12),
      rgba(120, 200, 255, 0.12)
    ),
    linear-gradient(120deg, rgba(255, 240, 100, 0.1), rgba(120, 255, 180, 0.1)),
    linear-gradient(0deg, rgba(200, 120, 255, 0.1), rgba(100, 120, 255, 0.1));
  background-blend-mode: soft-light;
  filter: hue-rotate(var(--angle, 0deg)) saturate(1.25) brightness(1.12)
    contrast(1.08) url(#pearlescent);
  transition: filter 0.08s linear;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
}

#startScreen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#startScreenTitle,
#startButton {
  display: block;
  margin: 0 auto;
  text-align: center;
}

#startScreenTitle {
  font-size: 72px;
  transform: translateY(-80px);
  color: #f2e9d8;
  -webkit-text-stroke: 1px #f2d16b;
}

#startButton {
  background: transparent;
  transform: translateY(-30px);
  border: none;
  font-size: 40px;
  color: #fad871;
}

#quizContainer {
  text-align: center;
}

#quizContainer > h1 {
  text-align: center;
  font-size: 48px;
  margin: 0;
  color: #f2e9d8;
  -webkit-text-stroke: 1px #f2d16b;
  opacity: 0;
  animation: titleMove 0.8s ease forwards;
}

@keyframes titleMove {
  from {
    opacity: 0;
    transform: translateY(0) scale(1.2);
  }
  to {
    opacity: 1;
    transform: translateY(-60px) scale(1);
  }
}

#quizContainer p:nth-child(1) {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

#score {
  animation: fadeIn 0.8s ease forwards;
}

#quizContainer p:nth-child(1) {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#game {
  text-align: center;
}

#locationImg {
  border-radius: 20px;
  width: 450px;
  height: 450px;
  mask-image: radial-gradient(circle, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 70%, transparent 100%);
}

#newLandmark {
  display: flex;
  margin: 0 auto 10px auto;
  transform: translateY(100px);
}

#game > p:nth-of-type(2) {
  text-align: center;
  margin-top: 10px;
  font-size: 24px;
  color: white;
}

.multipleChoiceOption {
  display: block;
  margin: 10px auto;
  width: 250px;
  font-size: 20px;
}

#game {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#optionContainer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

#currentLandmark {
  position: absolute;
  top: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

#scoreFullText {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.multipleChoiceOption {
  background: transparent;
  border: none;
  color: #0b3d91;
  -webkit-text-stroke: 1px #0b3d91;
  font-size: 22px;
  padding: 14px 26px;
  border-radius: 12px;
  box-shadow: none;
  transform: translateY(0);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.multipleChoiceOption:hover {
  transform: translateY(4px);
  box-shadow: 0 0 8px rgba(255, 215, 100, 0.5),
    inset 2px 2px 6px rgba(0, 0, 0, 0.35),
    inset -2px -2px 6px rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.06);
}

.multipleChoiceOption:active {
  transform: translateY(7px);

  box-shadow: 0 0 5px rgba(255, 215, 120, 0.4),
    inset 1px 1px 4px rgba(0, 0, 0, 0.4),
    inset -1px -1px 4px rgba(255, 255, 255, 0.1);
}

#game {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(40px);
}
