@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Georgia, "Times New Roman", Times, serif;
}
h1 {
  text-align: center;
}

button {
  font-size: 1.5rem;
  padding: 5px;
  margin: 30px;
  border-radius: 7px;
}

.rock {
  background-color: antiquewhite;
}
.paper {
  background-color: white;
}
.scissors {
  background-color: rgba(0, 0, 255, 0.164);
}

#container {
  text-align: center;
}

button:hover {
  background-color: rgba(201, 199, 199, 0.596);
}

button:active {
  background-color: rgba(114, 113, 113, 0.596);
  color: white;
}
