/* mobile-first */

/* For index.html */
#quickStart {
  margin-top: 50px;
}

/* For level.index */
#levels {
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

#levels button {
  height: 150px;
  width: 150px;
}
#levels p {
  font-family: Roboto;
  font-size: 1rem;
}

/* #levels div {
  width: 150px;
  height: 150px;
  background-color: #5C8ECB;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 3rem;
  padding: 3rem;
} */

/* For ramdom.html */

/* For test.html */
#test {
  margin-top: 3rem;
}

/* #option {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
} */

/* For question.html */
#form label {
  font-size: 2rem;
  margin-right: 1rem;
}
#form input {
  width: 25%;
  height: 3rem;
  font-size: 2rem;
}
#form div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
#next {
  margin: 2rem auto;
}
.wrong p {
  font-size: 3rem;
}
.total a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #5C8ECB;
}

/* for tablet */
@media screen and (min-width: 736px) {
  /* index.html & test.html */
  #quickStart .practice, #option {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
}