@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
html {
  height: 100%;
}
body {
  background-color: #eec0c6;
  background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%);
}
h1,
h2 {
  text-align: center;
}
.rps-img {
  border-radius: 10px;
  width: 100px;
  border: solid black 5px;
}
.player-selection {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
#result-box {
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  padding: 25px;
}
.player-selection {
  padding: 2rem;
}
#rock-img,
#paper-img,
#scissors-img {
  transition: 100ms;
  cursor: pointer;
}
#rock-img:hover,
#paper-img:hover,
#scissors-img:hover {
  transform: scale(1.2);
}
#score-title {
  font-size: 35px;
  text-decoration: underline;
  margin-top: 35px;
  text-align: center;
}
.score-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10rem;
}
#score-player,
#score-computer,
#score-tie {
  font-size: 40px;
}
#player-counter,
#computer-counter,
#tie-counter {
  font-size: 65px;
  padding-left: 35%;
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgb(51, 40, 40);
  color: white;
  text-align: center;
}
#restart {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
#restart-button {
  visibility: hidden;
  transition: 100ms;
  display: inline-block;
  padding: 15px 25px;
  font-size: 25px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #4caf96;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px #999;
}
#restart-button:hover {
  transform: scale(1.2);
}
#restart-button:active {
  background-color: #3e638e;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
