@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 1000px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: rgb(133, 133, 133);
  background-color: #131313;
  font-family: 'Poppins', sans-serif;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
 
  flex-direction: column;
}
button {
  cursor: pointer;
}

.title {
  font-size: 40px;
  letter-spacing: 3px;
  color: white;
  font-weight: 600;
}

.scores {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding-bottom: 30px;
}

.scores p {
  background: rgb(0, 132, 0);
  padding: 10px 20px;
  color: white;
  border-radius: 8px;
  font-size: 25px;
}

.scores .comp {
  background: rgb(136, 6, 6);
}

.scores span {
  font-size: 30px;
}

.options button {
  padding-top: 30px;
  background: #260071;
  border-radius: 8px;
  border: none;
  margin: 20px;
  transition: all 0.2s ease-in-out;
}

.options button.active {
  scale: 1.2;
}

.options button img {
  width: 200px;
  height: 240px;
  pointer-events: none;
}
.choices {
  font-size: 30px;
  display: none;
  padding: 20px;
}

.choices.active {
  display: block;
}

.result-text {
  font-size: 30px;
  width: 50%;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
}

.reset-game {
  background: rgb(45, 45, 45);
  color: white;
  font-size: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  border: none;
}

.reset-game.active {
  display: block;
}

.reset-game:hover {
  background: rgba(28, 28, 28, 0.876);
}
