body {
  background-color: #223a2c;
}
.code-container {
  position: relative;
  width: 250px;
  margin: 20px;
  cursor: text;
}

.show-guess-container {
  position: relative;
  width: 250px;
  margin: 5px 20px 0px;
  cursor: text;
}

#realInput {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  letter-spacing: 0;
  caret-color: transparent;
}

.boxes {
  display: flex;
  justify-content: space-between;
}

.boxes span {
  border: 2px solid black;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-sizing: border-box;
  font-family: monospace;
  color: white;
}

.correct {
  background-color: green;
}
.almost {
  background-color: #A3A300;
}

.boxes span .correct {
  border: 2px solid black;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-sizing: border-box;
  font-family: monospace;
  background-color: green;
  color: white;
}

.boxes span .wrong {
  border: 2px solid black;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-sizing: border-box;
  font-family: monospace;
  background-color: red;
  color: white;
}

.boxes span .almost {
  border: 2px solid black;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-sizing: border-box;
  font-family: monospace;
  background-color: #A3A300;
  color: white;
}
