body {
  font-family: "Press Start 2P", cursive;
  margin: 0%;
  background-color: #f7efe5;
  text-align: center;
}

button,
select {
  font-family: "Press Start 2P", cursive;
  text-align: center;
  display: inline-block;
  margin: 5px;
  padding: 15px;
  border-radius: 7px;
  background-color: lightgray;
  text-shadow: -1px -1px black, 1px 1px white;
  box-shadow: 0 0.2em gray;
}

button:hover {
  transform: scale(1.05);
}

select {
  padding: 5px;
}

.home-banner,
.js-logo {
  width: auto;
  height: 10rem;
}

.intro-images-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
  width: 100vw;
}

.intro-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.legal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 70vw;
  margin: 50px;
  font-size: 0.6rem;
}

.difficulty-level {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
}

.correct-answer,
.incorrect-answer,
.answer-btn {
  margin: 10px;
}

.answer-btn {
  width: 250px;
  height: 50px;
  font-size: 0.7rem;
  text-shadow: none;
}

.correct-answer,
.incorrect-answer {
  padding: 10px;
  background-color: black;
  font-size: 1.2rem;
  border-radius: 7px;
}

.correct-answer {
  color: rgb(53, 236, 53);
}

.incorrect-answer {
  color: rgb(236, 62, 62);
}

.all-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.feedback-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

.question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  line-height: 2.5rem;
  font-size: 0.6rem;
  text-align: center;
}

.question-text {
  width: 80%;
}

.status-container {
  margin: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
  background-color: #03001c;
  border-radius: 7px;
  color: white;
}

.low-threat,
.high-health {
  color: green;
}

.medium-threat,
.medium-health {
  color: orange;
}

.high-threat,
.low-health {
  color: red;
}

@media (max-width: 480px) {
  .intro-images-container {
    flex-direction: column;
  }

  .intro-container {
    height: 100%;
  }

  .intro-text-container {
    height: 100%;
  }

  .legal-footer {
    width: 100%;
  }

  .all-container {
    flex-direction: column;
  }

  .feedback-container {
    height: 100%;
  }

  .question-container {
    height: 100%;
  }

  .status-container {
    flex-direction: column;
  }
}
