body {
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #282c34;
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  padding: 20px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#choices {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.choice {
  display: inline-block;
  margin: 10px;
  cursor: pointer;
  padding: 20px;
  border: 2px solid #61dafb;
  border-radius: 10px;
  background-color: #20232a;
  transition: transform 0.2s, background-color 0.2s;
  font-size: 1.5em;
}

.choice:hover {
  transform: scale(1.1);
  background-color: #61dafb;
}

#result {
  font-size: 24px;
  margin-top: 20px;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .choice {
    padding: 15px;
    font-size: 1.2em;
  }

  #result {
    font-size: 20px;
  }
}
