* {
  margin: 0;
  padding: 0;
  text-align: center;
}
body{
  background-color: beige;
}
h1 {
  background-color: #081b31;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  height: 5rem;
  line-height: 5rem;
}

.choice {
  height: 165px;
  width: 165px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice:hover {
  cursor: pointer;
  background-color: #081b31;
}

img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.choices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.score-board {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-top: 3rem;
  gap: 5rem;
}

#user-score,
#comp-score {
  font-size: 4rem;
}

.msg-container {
  margin-top: 5rem;
}

#msg {
  background-color: #081b31;
  color: #fff;
  font-size: 2rem;
  display: inline;
  padding: 1rem;
  border-radius: 1rem;
}
.reset-container {
  margin-top: 2rem;
}

#reset-btn {
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  background-color: #081b31;
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

#reset-btn:hover {
  background-color: #062041;
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
    height: 4rem;
    line-height: 4rem;
  }

  .choices {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .choice {
    height: 100px;
    width: 100px;
  }

  img {
    height: 80px;
    width: 80px;
  }

  .score-board {
    gap: 2rem;
    font-size: 1.2rem;
    flex-wrap: wrap;
  }

  #user-score,
  #comp-score {
    font-size: 2.5rem;
  }

  #msg {
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
  }

  #reset-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .choice {
    height: 90px;
    width: 90px;
  }

  img {
    height: 70px;
    width: 70px;
  }

  #user-score,
  #comp-score {
    font-size: 2rem;
  }

  #msg {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  #reset-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
