body {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
}
.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 10px;
}
#question-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-height: 700px;
  overflow-y: scroll;
  overflow-x: visible;
  margin-bottom: 30px;
}
.question {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  border: 2px solid white;
  border-radius: 40px;
  padding: 40px;
  width: 400px;
}
