body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(
    to right,
    #ff8177 0%,
    #ff867a 0%,
    #ff8c7f 21%,
    #f99185 52%,
    #cf556c 78%,
    #b12a5b 100%
  );
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

main {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h3 {
  font-size: 4rem;
  text-align: center;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: normal;
}

.buttons {
  height: 10%;
  display: flex;
  justify-content: center;
  background-color: rgb(175, 255, 224);
  border: 2px solid rgb(57, 24, 24);
  border-radius: 100px;
  box-shadow: 4px 4px 10px rgb(48, 16, 16);
}

p {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: 0;
}

.rock,
.paper,
.scissors {
  height: 150px;
  margin: 10px;
}
.score {
  margin-bottom: 2rem;
}

@media (max-width: 950px) {
  .rock,
  .paper,
  .scissors {
    height: 100px;
    margin: 2px;
  }

  h3 {
    font-size: 2rem;
  }
  .score {
    font-size: 1.5rem;
  }
  p {
    font-size: 1.5rem;
    margin: 30px 10px;
  }
  .image {
    height: 4rem;
  }
  .reset-button {
    font-size: 1rem;
  }
  .moves {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 951px) {
  .image {
    height: 6rem;
  }
}

button {
  border: none;
  background-color: transparent;
  border-radius: 125px;
  cursor: pointer;
  transition: opacity 0.15s;
}
button:hover {
  opacity: 0.8;
}

.reset-button {
  font-size: 1.5rem;
  border: 2px solid white;
  background-color: rgb(239, 84, 84);
  color: white;
  padding: 20px;
  font-weight: lighter;
  box-shadow: 4px 4px 10px rgb(95, 16, 16);
}

.reset-button-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.icon {
  height: 6rem;
  margin: 1rem;
}

.inf {
  margin: 1rem;
}
.moves {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
