body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 90vh;
  width: 90vw;
  overflow-x: hidden;
  border: 1px solid white;
}
.spinner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 90vw;
  overflow-x: scroll;
}
.spinner_item {
  font-size: 1.125rem;
  color: white;
  padding: 10px 20px;
  margin: 0px 5px;
  border: 0.1px solid white;
}
.controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.controls button {
  padding: 10px 50px;
  background-color: transparent;
  color: white;
  font-size: 1.25rem;
  border: none;
  margin: 20px 10px;
  transition: background-color 0.3s ease;
}
.controls button:hover,
.controls button:focus {
  background-color: #006356;
}
.information {
  text-align: center;
  color: white;
  padding: 20px 50px;
  height: 1.75rem;
}
#letterDisplay {
  font-size: 1.75rem;
  font-weight: bold;
}
#remainingCount {
  font-size: 1.125rem;
}
