html,
body,
main {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body {
  text-align: left;
  font-family: 'Roboto Mono', monospace;
  background-color: #fafafa;
}

.bold {
  font-weight: bold;
}

textarea {
  font-family: 'PT Mono', monospace;
  text-transform: uppercase;
  height: 60%;
}

textarea#userInput {
  width: 95%;
  height: 50%;
  display: block;
  border-radius: 12px;
  padding: 12px;
}

h3 {
  margin: 12px 0;
  padding: 0;
  width: 100%;
}

.game {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  text-align: center;
}

.gameOver {
  width: 100%;
  height: 100%;
  display: none;
  padding: 0 12px;
}

#playBtn {
  background-color: #606C38;
  color: #fafafa;
  transition: .5s;
}

#playBtn:disabled {
  filter: grayscale(1) brightness(.75);
  transform: scale(.75);
  cursor: not-allowed;
}

textarea:focus {
  outline: .5px solid #212121;
}

.nameInput {
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}

.nameInput:not(:placeholder-shown) {
  border-bottom: 1px solid #212121;
}

.nameInput::placeholder {
  color: #212121;
}

.gameOver .textBoxes {
  width: 100%;
}

.textBoxes .info {
  width: 125px;
  display: inline-block;
}

.textBoxes div:nth-child(odd) {
  padding-top: 16px;
}

.textBoxes div {
  text-wrap: nowrap;
  white-space: pre;
}

.incorrectLetter {
  color: #df0000;
}

table {
  background-color: #eeeeee;
  padding: 12px;
  border-radius: 12px;
}

th,
td {
  padding: 0 6px;
}

button {
  border: none;
  border-radius: 5px;
  background-color: #bdbdbd;
  margin: 5px;
  cursor: pointer;
  padding: 5px;
}

.wide {
  width: 90%;
  padding: 10px;
  border-radius: 20px;
}

.radioContainer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #606C38;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.radio {
  aspect-ratio: 1400/400;
  width: 90%;
}

#racal.fadingAway {
  transition: 1s;
  opacity: 0;
  pointer-events: none;
}

#display1 {
  justify-content: space-around;
}

.digital {
  font-family: "Digital Display";
  font-size: 25px;
  letter-spacing: 3px;
}

#clock {
  font-family: 'Digital Display';
  letter-spacing: 3px;
}

@media screen and (max-width: 600px) {
  textarea {
    width: 90%;
  }
}