* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
   background: linear-gradient(to right, #000000, #FFA500);


}
.container {
  width: 45%;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 16px;
   border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.pontuacao {
  margin-bottom: 50px;
  text-align: right;
}
.escolhas {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.escolhas button {
  background-color: #ffd51b;
  color: #000;
  border: none;
  font-size: 50px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}
.detalhes {
  margin-top: 30px;
  text-align: center;
}
.pontuacao,
.detalhes {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
#resultado {
  width: 180px;
  padding: 10px 0;
  margin: 30px auto;
  font-weight: 600;
  letter-spacing: 0.5px;
}
#usuario_escolha,
#computador_escolha {
  font-weight: 400;
  margin-bottom: 10px;
}
span {
  font-weight: 600;
}

@media screen and (max-width: 900px) {
  .escolhas {
    flex-direction: column;
  }
  .escolhas button {
    margin: 10px auto;
  }
  #resultado {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .container {
    padding: 10px 5px;
  }
}