body {
  background-color: rgb(42, 42, 42);
  color: white;
  font-family: Arial;
  margin-top: 50px;
  text-align: center;
  display: grid;
  place-items: center;
}

.container {
  width: fit-content;
}

main {
  border: 2px solid white;
  border-radius: 25px;
  padding: 60px;
}

.results {
  margin-top: 60px;
}

.round-result {
  font-size: 24px;
  font-weight: bold;
}

.moves {
  margin-top: 30px;
}

.my-score {
  margin-top: 60px;
  font-weight: bold;;
}

.move-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  /* width: 120px;
  height: 120px; */
  margin-right: 10px;
}

.move-icon {
  height: 60px;
}


.reset-score-container {
  display: flex;
  justify-content: center !important;
  /* !important allowed the correct horizontal alignment of the content
  for mobile devices (tested on iPhone 15 Pro) */
  align-items: center;
  width: 100%;
}

.reset-score-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
  height: 34px;
  width: 112px;
  border: none;
  background: #ff362b34;
  border-radius: 20px;
  cursor: pointer;
}

.label {
  line-height: 20px;
  font-size: 17px;
  color: #ff342b;
  letter-spacing: 1px;
}

.reset-score-button:hover {
  background: #ff362b52;
}

.reset-score-button:hover .svg-icon {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}
