body {
  background-color: rgb(186, 247, 236);
}

.overlay {
  background-color: rgba(128, 129, 129, 0.5);
}

#stage {
  display: flex;
  justify-content: center;
  gap: 100px;
}

#options {
  display: flex;
  justify-content: center;
}

#stage div {
  font-size: 180px;
}

#stage img {
  width: 220px;
}
#comp-img {
  transform: scaleX(-1);
}

#options img:hover {
  transform: scale(1.1);
}
#options img {
  cursor: pointer;
}
#result {
  font-family: "Pacifico", cursive;
  margin-top: 100px;

  text-align: center;
  color: #000000;
  font-size: 50px;
  font-weight: bolder;
}

#info {
  font-weight: bold;
  font-family: "Patrick Hand", cursive;
  margin-top: -50px;
  text-align: center;
  color: #000000;
  font-size: 30px;
}

.score {
  font-weight: bold;
  font-family: "Patrick Hand", cursive;
  margin-top: -20px;
  text-align: center;
  color: #000000;
  font-size: 30px;
}

.popup {
  width: 300px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f38181;
  font-family: "Patrick Hand", cursive;
  font-size: 25px;
  border-radius: 6px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  visibility: hidden;
  transition: transform 0.4s, top 0.4s;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.popup button {
  border-radius: 4px;
  border: 0;
  font-family: "Patrick Hand", cursive;
  font-size: 30px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.open-popup {
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
  top: 50%;
}

.popup p {
  margin: 0;
  font-size: 50px;
}

#hint {
  font-size: 27px;
}