body {
  padding: 0px;
  background-color: black;
  font-family: font;
  color: red;
}

.content {
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 2fr 8fr 1fr;
  grid-gap: 5px;
}

.header {
  font-size: 50pt;
  display: flex;
  align-items: center;
  justify-content: center;
}

textarea,
button {
  background-color: black;
  color: red;
  border: 1px solid red;
  border-radius: 10px;
}

textarea {
  font-size: 12pt;
  padding: 20px;
}

textarea:focus {
  outline: none;
}

button {
  font-size: 20pt;
  font-family: font;
}

button:active {
  background-color: darkred;
  border-color: darkred;
  color: black;
}

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

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

.modal {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10%;
  overflow: hidden;

  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;

  position: absolute;
  top: 0;
  left: 0;

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

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-modal {
  font-size: min(10vh, 4vw);
  display: none;
}
