body {
  background-color: black;
  padding: 0px;
  margin: 0px;
}

.textinput {
  background-color: black;
  width: 100%;
  height: 500px;
  padding: 12px 20px;
  color: white;
  font-size: 30px;
  font-family: 'Ruslan Display', cursive, 'captain howdy', 'Times New Roman', Times, serif, 'Roboto', sans-serif;
  border: solid 1px black;
  caret-color: red;
  resize: none;
  overflow: hidden;
  background-size: contain;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.textinput:focus {
  outline: none;
  resize: none;
  box-shadow: 0 0 0 0px black;
}

.answer {
  color: white;
  font-size: 30px;
  font-family: captain howdy;
  padding: 50px;
}

.instructions {
  color: rgb(29, 29, 29);
  float: right;
  position: absolute;
  bottom: 0;
  right: 100px;
}

.hint {
  color: white;
  float: right;
  position: absolute;
  bottom: 0;
  right: 100px;
}

.instext {
  color: white;
}