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

body {
  background: url("https://fastly.picsum.photos/id/191/1600/900.jpg?hmac=0SHck3AyIFzDjboy3FqM5qNG0ssrIpDaC8lnV3V5xkc");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.buttons {
  margin: 30px 0;
  display: flex;
  gap: 40px;
}

button {
  padding: 10px;
  font-size: 50px;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out;
}

button:hover {
  opacity: 0.7;
}

#rock {
  background-color: #a200ff;
}

#paper {
  background-color: #9ee01a;
}

#scissors {
  background-color: #7dbeed;
}

p {
  font-weight: bold;
  margin-bottom: 10px;
}

.your-score span {
  color: rgb(77, 128, 216);
}

.machine-score span {
  color: rgb(224, 71, 15);
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px; /* Ajuste para telas menores */
  }
  .result {
    width: 100%; /* Preenche a tela em dispositivos pequenos */
    text-align: center;
  }
}