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

body {
  background-color: rgb(105, 101, 222);
}

#gameWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  background-color: rgb(28, 163, 236);
  width: 600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

#computerMove {
  font-size: 1.75rem;
  margin-top: 0.5rem;
}

#playerMove button {
  margin-top: 0.5rem;
  font-size: 1.75rem;
}

#gameText {
  margin-top: 0.5rem;
  font-size: 1.75rem;
}

#submit button {
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

#submitText {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

button {
  background-color: rgb(247, 15, 15);
  color: white;
  width: 120px;
}

button:disabled {
  background-color: black;
}
