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

body {
  background: #511212;
  font-size: 1.5rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff6d5;
  font-family: sans-serif;
}

.cell {
  height: 35px;
  width: 25px;
  text-align: center;
  font-family: monospace;
  margin: 5px;
  border-bottom: solid 5px white;
}
.cell.NotPresent {
  border-color: grey;
}
.cell.Elsewhere {
  border-color: orange;
}
.cell.Good {
  border-color: green;
}

input {
  border: none;
  background: none;
  font-family: monospace;
  text-transform: uppercase;
  color: inherit;
  font-size: 25px;
  width: 200px;
  letter-spacing: 20px;
  padding-left: 10px; /* Add half spacing to the left */
}
input:focus {
  outline: none;
}

.keyboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 600px;
  margin: 25px;
}
.keyboard .cell {
  border: solid 1px white;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.keyboard .cell.NotPresent {
  background-color: grey;
}
.keyboard .cell.Elsewhere {
  background-color: orange;
}
.keyboard .cell.Good {
  background-color: green;
}

.help button {
  margin: 5px;
}

.options li {
  cursor: pointer;
}
