* {
  box-sizing: border-box;
  font-size: 62.5%;
}
.root {
  --quizTheme:rgb(89, 44, 128);
  --bg-color:rgb(35, 32, 32);
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgb(26, 25, 25);
}

header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 3rem;
  background-color: white;
  padding:1.5rem;
  box-shadow: 0 .5rem 0 .75rem;
}

a {
  text-decoration: none;
}
section {
  display: flex;
  flex-direction: column;
  width: 90rem;
  max-width: 70%;
  color: white;
  background-color: rgb(89, 44, 128);
  padding: 4rem;
  margin: 5rem;
  border-radius: 0.5rem;
  box-shadow: .5rem .5rem;
}

form {
  font-size: 2rem;
  padding: 1rem;
}

h1 {
  font-size: 6rem;
  margin-bottom: 1rem;;
}

h2 {
  font-size: 3rem;
  margin: 1rem;
}

.option {
  font-size: 2rem;
}

p {
  font-size: 2rem;
  margin: 1.25rem 0;
}

 .st-btn button {
  font-size: 3rem;
  border-radius: .5rem;
}

button {
  font-size: 1.5rem;
  border-radius: .5rem;
  margin: .25rem;
}

.stats {
  border: .25rem solid white;
  margin: 4rem;
  align-self: flex-start;
  font-size: 4rem;
  color: black;
  background-color: white;
  padding: 2rem;
  border-radius: .5rem;
}

.hidden {
  display: none;
}

.correct {
  background-color: rgb(27, 77, 27);
}

.wrong {
  background-color: rgb(136, 47, 47);
}