section {
  background-color: lightcoral;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
section .container {
  border-radius: 15px;
  background-color: #fff;
  margin: 0 auto;
  min-height: auto;
  padding: 40px 20px;
  box-shadow: rgb(38, 57, 77) 0px 10px 30px -10px;
  position: relative;
}
.game_score {
  float: right;
  max-height: min-content;
  position: absolute;
  top: 20px;
  right: 40px;
  text-align: end;
}
.buttons {
  display: flex;
  gap: 50px;
  padding: 100px;
  margin: 0 auto;
}
.buttons button {
  background-color: lightcoral;
  box-shadow: rgb(38, 57, 77) 0px 10px 30px -10px;
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 70px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition-duration: 700ms;
}
.buttons button:hover {
  transform: scale(1.2);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.click_text {
  text-align: center;
  font-size: 50px;
  letter-spacing: 2px;
}
.choices {
  display: none;
}
.choices p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.result {
  margin: auto;
  padding: 15px 40px;
  text-align: center;
  max-width: 300px;
  margin-top: 50px;
  display: none;
}
@media only screen and (max-width: 800px) {
  section .container {
    margin: 0 20px;
  }
  .buttons button {
    font-size: 50px;
    width: 100px;
    height: 100px;
  }
  .buttons {
    gap: 20px;
    padding: 50px 50px 100px;
  }
}
@media only screen and (max-width: 600px) {
  section .container {
    margin: 0 20px;
  }
  .buttons button {
    font-size: 30px;
    width: 80px;
    height: 80px;
  }
  .buttons {
    gap: 20px;
    padding: 50px 30px 70px;
  }
  .result {
    padding: 15px 20px;
    max-width: 200px;
    margin-top: 30px;
    font-size: 20px;
  }
  .choices p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 400px) {
  section .container {
    margin: 0 20px;
  }

  .buttons button {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
  .buttons {
    gap: 20px;
    padding: 50px 20px 20px;
    margin-bottom: 50px;
  }

  .choices p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
