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

.question-title {
  font-size: 4.8rem;
  font-weight: 800;
  color: black;
  text-shadow: 3px 3px 2px #d7e6a5, -3px 3px 2px #d7e6a5, -3px -3px 0 #d7e6a5,
    3px -3px 0 #d7e6a5;
  text-align: center;
}

.score--section {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
  align-self: flex-start;
}

.score {
  letter-spacing: 0.2rem;
  font-size: 2.4rem;
  font-weight: 800;
  text-shadow: 3px 3px 2px #d7e6a5, -3px 3px 2px #d7e6a5, -3px -3px 0 #d7e6a5,
    3px -3px 0 #d7e6a5;
}
.question--section {
  display: flex;
  position: relative;
}
.question {
  font-size: 4.8rem;
  font-weight: 800;
  color: black;
  text-shadow: 2px 2px 1px #d7e6a5, -2px 2px 1px #d7e6a5, -2px -2px 0 #d7e6a5,
    2px -2px 0 #d7e6a5;
  text-align: center;
  position: absolute;
  top: 7rem;
  left: 11rem;
}

.time {
  font-size: 2.4rem;
  font-weight: 800;
  color: black;
  text-shadow: 2px 2px 1px #d7e6a5, -2px 2px 1px #d7e6a5, -2px -2px 0 #d7e6a5,
    2px -2px 0 #d7e6a5;
  text-align: center;
}

.answers--section {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;

  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.answers {
  width: 20rem;
  height: 12rem;
  background-color: #d9d9d9;
  border: 1rem solid #637623;

  font-size: 4.8rem;
  font-weight: 800;
}

/* LOSE and WIN SECTION */

.lost--view,
.win--view {
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  animation: scroll-in cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
}

@keyframes scroll-in {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

.loss-title {
  font-size: 4.8rem;
  font-weight: 800;
  color: black;
  text-shadow: 3px 3px 2px #d7e6a5, -3px 3px 2px #d7e6a5, -3px -3px 0 #d7e6a5,
    3px -3px 0 #d7e6a5;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 3rem;
}

.full-question,
.correct,
.win-message,
.incorrect {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: inherit;
  color: white;
  text-align: center;
}

.win-message {
  color: #9bbf23;
}

.correct-answer {
  color: green;
}

.incorrect-answer {
  color: red;
}

.basic--btn {
  width: 26rem;
  min-height: 6rem;
  font-size: 2.4rem;
  font-weight: 800;

  color: #000000;
  background-color: #d9d9d9;
  border: 8px solid #637623;
  border-radius: 43px;
  text-align: center;
  text-decoration: none;
  margin-top: 3rem;
}

.basic--btn:hover {
  background-color: #c3c3c3;
}

.basic--btn:active {
  background-color: #b6b5b5;
}
.link--btn {
  padding-top: 0.75rem;
}
/* JAVASCRIPT STYLES */

.correct {
  background-color: green;
}

.active-screen {
  display: flex;
}

/* ///////////////////////////////////////////////////////// */
/* MEDIA QUERIES */
/* ///////////////////////////////////////////////////////// */

@media (min-width: 45em) {
  .loss-title {
    font-size: 7.2rem;
  }

  .full-question,
  .correct,
  .win-message,
  .incorrect {
    font-size: 4.8rem;
  }

  .basic--btn {
    width: 48rem;
    min-height: 10rem;
    font-size: 3rem;
    display: grid;
    place-content: center;
  }
  .turtle-loss {
    width: 50rem;
  }

  .answers {
    width: 30rem;
    height: 30rem;
    font-size: 6.4rem;
  }
}
@media (max-width: 25.25em) {
  .answers {
    width: 17rem;
    height: 12rem;
    border: 5px solid #637623;
  }

  .lizard-bubble {
    width: 30rem;
  }

  .question {
    font-size: 3.6rem;
    top: 5.5rem;
    left: 9rem;
  }
}

@media (max-width: 22em) {
  .answers {
    width: 15rem;
    height: 10rem;
    font-size: 3.6rem;
    font-weight: 700;
  }

  .turtle-loss {
    width: 30rem;
  }
}

@media (max-width: 20em) {
  .lizard-bubble {
    width: 25rem;
  }

  .question {
    top: 4.5rem;
    left: 8rem;
    font-size: 3rem;
  }
}
