body {
  margin: 0px;
}

/********************************************************************************/

@font-face {
  font-family: font;
  src: url(assets/fonts/darkforest.woff2);
}

.modal {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: font;
  background-color: black;
  color: darkred;

  user-select: none;
}

.modal > .title-text {
  font-family: font;
  background-color: black;
  color: darkred;

  font-size: min(18vh, 15vw);
}

.modal > .subtitle-text {
  font-family: font;
  background-color: black;
  color: darkred;

  font-size: min(10vh, 10vw);
}

#splash-modal > .title-text {
  font-size: 14vw;
}

#splash-modal > .subtitle-text {
  font-size: 10vw;
}

.nobackground {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.notextcolour {
  color: rgba(0, 0, 0, 0) !important;
}

.modal > textarea {
  color: red;
  background-color: rgba(0, 0, 0, 0.9 );
  border-color: red;

  font-size: 2vh;
  width: 60vw;
  height: 60vh;
  padding: 1vh;
  resize: none;
}

.modal > textarea:focus {
  outline: none;
}
