* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: lightgray;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  margin-top: 2rem;
  padding-bottom: 4rem;
  font-size: 4rem;
}


/* Button Styles */
.buttons {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}
button {
  padding: 1rem 2rem;
  width: 10rem;
  border: none;
  border-radius: 5px;
  background-color: black;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
#reset {
  margin-top: 2rem;
  width: 15rem;
}


/* Display Box Styles */
.display-box {
  padding: 1rem;
  width: 854px;
  height: 480px;
  display: flex;
  flex-direction: column;
  background-color: gray;
}
.scores {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.choices {
  margin-top: 4rem;
  display: flex;
  justify-content: space-around;
}
.human-choice, .computer-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid black;
  border-radius: 1rem;
  font-size: 2rem;
  padding: 1rem;
  gap: 1rem;
}
.human-choice{
  padding: 1rem 4rem;
}
#round-result {
  padding-top: 4rem;
  font-size: 4rem;
  text-align: center;
}