html,
body {
  width: 100%;
  height: 100%;
  margin: 0;

  font-family: Arial, Helvetica, sans-serif;
}

main {
  width: 100%;
  height: 100%;
  background-color: black;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  color: white;
  font-size: 30px;
  font-weight: bold;
}

.play-button {
  background-color: black;
  border-color: white;
  border-style: solid;
  border-width: 3px;
  border-radius: 60px;
  width: 120px;
  height: 120px;

  margin-right: 10px;


  flex-direction: row;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.play-button img {
  width: 50px;
}

.choice-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.choice-row img {
  width: 70px;
  border-radius: 50px;
}

.choice-row p {
  width: 140px;
  color: white;
  font-size: 30px;
  margin-inline: 10px;
}

.result {
  color: white;
  font-size: 26px;
  font-weight: bold;
}

.score {
  font-size: 18px;
  color: white;
}

.reset-button {
  background-color: white;
  color: black;
  font-size: 16px;
  border: none;
  padding: 8px 15px;

  cursor: pointer;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;

  position: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-hidden{
  display: none;
}

.reset-score-confirmation {
  background-color: rgb(178, 178, 178);
  width: 400px;
  height: 150px;

  border: none;
  border-radius: 20px;

  padding-inline: 40px;
  padding-block: 20px;
}

.reset-score-question {
  color: rgb(149, 113, 23);
  font-size: 24px;
}

.reset-score-button{
  background-color: rgb(64, 64, 64);
  color: rgb(216, 179, 78);

  width: 60px;
  height: 30px;

  border: none;
  border-radius: 7px;

  cursor: pointer;

  margin-inline: 0px;
}

.reset-score-confirmation-button-row{
  display: flex;
  justify-content: center;
  column-gap: 8px;
}