body {
  display: flex;
  background-image: url(/assets/images/questions-background.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}

h2 {
  font-family: "Italiana", serif;
  font-size: 2rem;
  font-color: #fff;
  text-align: center;
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  margin: 0 auto;
}
.container > * {
  width: 90%;
}

.justify-center {
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.choice-container {
  width: 90%;
  margin-left: 5%;
  display: inline-block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  height: auto;
}

.answer {
  font-family: "Pompiere", cursive;
  font-size: 1.6em;
  text-align: center;
  background-color: #0d1211;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid white;
  margin: 0.5rem auto;
  padding: 1rem;
  margin-bottom: 3%;
  transition: all 0.3s ease;
}
.answer:hover {
  box-shadow: 0.3rem 0.3rem rgb(50, 55, 50);
  transform: translateY(-0.3rem);
  cursor: pointer;
  background-color: var(--color-primary);
  color: #0d1211;
}

@media screen and (max-width: 768px) {
  .answer {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
#game {
  background-color: #fff;
  border-radius: 10%;
  padding: 1rem;
}

.correct {
  background-color: rgb(161, 226, 62);
}

.incorrect {
  background-color: red;
}

#hud {
  display: flex;
  justify-content: space-around;
}
#hud .hud-prefix {
  text-align: center;
  font-size: 1.5rem;
  font-family: Pompiere;
}
#hud .hud-main-text {
  text-align: center;
  font-size: 1.5rem;
  color: rgb(205, 40, 40);
  font-family: "Rubik Dirt", cursive;
}

.congrats_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.congrats_header {
  font-family: "Rubik Dirt", cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}

#score {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.restart {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: green;
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0.5rem;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .congrats_header {
    font-size: 1.5rem;
  }
  #score {
    font-size: 1.25rem;
  }
  .btn {
    font-size: 1rem;
  }
}