body {
  background-color: black;
  color: white;
  margin: 50px 300px 0 300px;
  height: 100%;
}

#heading {
  border: 5px solid #eafdee;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 30px;
}

#heading h1 {
  display: inline-block;
  font-style: italic;
  font-size: 50px;
  background: linear-gradient(to right, #5cd5d7, #8ecb8e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* text-transform: uppercase; */
}

.game-direction,
.game-rules {
  display: flex;
  flex-direction: column;
  border: 5px solid #eafdee;
  border-radius: 20px;
}

.game-direction h2,
.game-rules h2 {
  /* padding-left: 30px; */
  font-size: 40px;
  text-align: center;
  margin-bottom: 0;
}

.game-direction p,
.game-rules p {
  font-size: 30px;
  text-align: center;
}

.start-game,
.playAgain {
  display: flex;
  margin: 25px 0;
  justify-content: center;
  align-items: center;
}

#start-game-btn,
.playAgain {
  font-size: 30px;
  background-color: transparent;
  color: white;
  border: 5px solid white;
  padding: 15px;
  border-radius: 5px;
}

#start-game-btn:hover,
.playAgain:hover {
  color: black;
  background-color: white;
  cursor: pointer;
}

.playAgain {
  margin: 0 auto;
}

.player-choice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-size: 50px;
  margin-top: 50px;
}

#rock,
#paper,
#scissors {
  font-size: 30px;
  background-color: transparent;
  color: white;
  border: 5px solid white;
  padding: 15px;
  border-radius: 5px;
  padding: 20px 50px;
  font-size: 50px;
}

#rock:hover,
#paper:hover,
#scissors:hover {
  background-color: white;
  cursor: pointer;
}

#rock:disabled,
#scissors:disabled,
#paper:disabled {
  background-color: red;
  cursor: default;
}

.game-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.player-choice-screen,
.computer-choice-screen {
  display: flex;
  width: 300px;
  height: 300px;
  border: 5px solid white;
  border-radius: 5px;
  margin: 0 10px;
  align-items: center;
  justify-content: center;
  font-size: 150px;
}

span.vs {
  font-size: 100px;
}

.player-name,
.computer-name {
  /* transform: rotate(-90deg); */
  /* transform: rotate(-90deg); */
  font-size: 30px;
  /* display: flex; */
  /* align-items: center; */
}

.player-name,
.computer-name {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  text-transform: uppercase;
}

.player-screen,
.computer-screen {
  margin: 0;
  display: flex;
  /* justify-content: space-around; */
}

#winnerMessage {
  text-align: center;
  font-size: 50px;
  margin: 15px 0;
}

.hidden {
  display: none;
}
