@font-face {
  font-family: "Determination Mono";
  src: url("DTM-Mono.otf") format("opentype");
  font-weight: normal;
}

body {
  background-image: url("gaster.gif");
  background-size: cover;
  background-position: center;
  color: white;
  font-family: "Determination Mono";
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  margin: 0;
}
.depths {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
}
#text-box {
  font-family: "Determination Mono";
  font-size: 32px;
  white-space: pre-wrap;
  text-align: left;
  width: 35%;
  padding: 20px;
  white-space: pre-line;
  text-shadow: 0 0 2px #969696, 2px 0 2px #969696, -2px 0 2px #969696,
    0 2px 2px #969696, 0 -2px 2px #969696;
  line-height: 1.75;
  opacity: 1;
  /* transition: opacity 1.5s ease; */
}
.scarynothingdivtospacethetextbox {
  width: 100%;
  height: 10%;
  background-color: rgba(0, 0, 0, 0);
}
#input-box {
  width: 25%;
  position: absolute;
  left: 48.5%;
  top: 50%;
  transform: translate(-50%, -50%);
}
input:focus {
  outline: none;
}
#answer {
  font-family: "Determination Mono", monospace;
  font-size: 32px;
  background: transparent;
  border: 4px solid white;
  color: white;
  padding: 10px;
  width: 100%;
  text-align: center;
}

.hidden {
  display: none;
}
