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

body {
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
}

.container {
  width: 100%;
  max-width: 40rem;
  padding: 2rem;
  background: linear-gradient(
    180deg,
    rgba(45, 133, 215, 1) 0%,
    rgba(62, 102, 194, 1) 50%,
    rgba(80, 41, 161, 1) 100%
  );
  border-radius: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* TITLE */
.game-title {
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
}

/* MAIN GAME AREA */
.game-area {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.user,
.comp {
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
}

.result {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

/* BUTTONS */
.choice {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(46, 182, 255, 0.6), 0 0 40px rgba(46, 182, 255, 0.3);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.choice:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(46, 182, 255, 0.8), 0 0 60px rgba(46, 182, 255, 0.5);
}

.fa-hand-fist {
    color: green;
    font-size: 3rem;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

button.actions {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 1.25rem;
  background: #2eb6ff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
