* {
  padding: 0;
  margin: 0;
  font-family: monospace;
  transition: all 0.1s;
}

body {
  background-color: #021526;
}

main {
  background-color: #ffdfd6;
  height: 10vh;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#query {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#choice {
  background-color: #021526;
  height: 40vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 20px;
}

#white {
  height: 20vh;
  width: 20vh;
  background-color: #ffdfd6;
  color: black;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}

#black {
  height: 20vh;
  width: 20vh;
  background-color: black;
  color: blanchedalmond;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
}

#white:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

#black:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.response {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

#correct {
  font-size: 32px;
}

#incorrect {
  font-size: 32px;
}

#timeblock {
  width: 100vw;
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: aqua; */
}

#timer {
  color: beige;
  font-size: 42px;
}

#resetDiv {
  width: 100vw;
  display: flex;
  justify-content: center;
}

#reset {
  width: 80px;
  height: 5vh;
  border-radius: 30px;

  font-weight: 900;
}
