@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Henny+Penny&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(250, 250, 0);
  color: hsl(163, 100%, 25%);
}

h1 {
  color: rgb(250, 250, 0);
  background-color: hsl(163, 71%, 37%);
}

.answers {
  background-color: rgba(255, 255, 255, 0.35);
  border: 2px dotted hsl(163, 71%, 37%);
  border-radius: 10px;
}

#questions {
  font-size: 1rem;
}

.feedback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0.3em;
  background-color: hsl(163, 71%, 37%);
  color: rgb(250, 250, 0);
  border: 1px solid hsl(163, 71%, 37%);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.correct {
  color: rgb(250, 250, 0);
  background-color: rgb(30, 188, 0);
}

.incorrect {
  color: rgb(250, 250, 0);
  background-color: rgba(178, 30, 30, 0.87);
}

.the-right-one {
  background-color: rgba(97, 255, 5, 0.15);
  border: 1px solid white;
  box-shadow: 0 0 12px 4px white;
}

body {
  font-family: Montserrat, Tahoma, Geneva, Verdana, sans-serif;
  font-size: 100%;
}

h1 {
  font-weight: 500;
  border-radius: 10px 10px 0 0;
  padding: 0.1em;
  font-size: 2rem;
  margin: 0 0 1em;
  font-family: "Henny Penny", system-ui;
  letter-spacing: 0.025em;
}

#questions {
  font-size: 1.25rem;
  line-height: 1.05;
  margin: 0 0 1em;
}

.rem1-35 {
  font-size: 1.35rem;
}

.centered {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
}

.answers {
  margin: 0 0.7em 0.7em;
  padding: 0.7em;
  cursor: pointer;
}

.active:hover {
  background-color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

#questions {
  font-weight: 600;
}

#feedback {
  height: 38px;
}

.feedback-flex {
  display: flex;
  gap: 2em;
  align-items: center;
}

.result {
  flex-grow: 7;
}

.next {
  flex-grow: 1;
  cursor: pointer;
}

.hidden {
  display: none;
}

.border {
  border: 1px solid hsl(163, 71%, 37%);
  border-radius: 10px 10px 0 0;
}/*# sourceMappingURL=style.css.map */