* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 195, 255);
}

.container {
  width: 500px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container h3 {
  text-align: center;
  margin-bottom: 20px;
}

.container textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  margin-bottom: 20px;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
}

.choice {
  background-color: rgb(245, 12, 0);
  padding: 5px 10px;
  border-radius: 5px;
  color: white;
  margin: 0px 5px;
  margin-bottom: 10px;
}

.choice.highlight {
  background-color: yellow;
  color: black;
}
