@font-face {
  font-family: 'GameFont';
  src: url(PoetsenOne-Regular.woff2);
}
body {
  color: white;
  font-family: 'GameFont';
  padding: 0;
  margin: 0;
}
.game {
  width: 100vw;
  height: calc(100vh - 32px);
  padding-bottom: 32px;
  background: linear-gradient(45deg, hsla(240deg, 50%, 50%), hsla(200deg, 50%, 50%));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.title {
  text-align: center;
  color: white;
  font-family: 'GameFont';
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
}
.options {
  width: calc(100% - 2 * 32px);
  margin: 0 auto;
  max-width: 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.option {
  background: linear-gradient(0deg, hsla(240deg, 80%, 90%), hsla(200deg, 80%, 90%));
  user-select: none;
  cursor: pointer;
  text-align: center;
  font-size: 22px;
  color: hsla(240deg, 50%, 50%);
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 25%);
  padding: 16px 0;
  background-color: white;
  white-space: nowrap;
}
.correct {
  background: linear-gradient(180deg, hsla(70deg, 60%, 50%), hsla(140deg, 60%, 50%));
  color: white;
}
.incorrect {
  color: white;
  background: linear-gradient(0deg, hsla(0deg, 100%, 50%), hsla(20deg, 100%, 50%));
}
.result {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  flex-grow: 1;
}
.result .score {
  font-size: 120px;
}
.button {
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: hsla(240deg, 50%, 50%);
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 10%);
  padding: 12px 64px;
  background-color: white;
  white-space: nowrap;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
