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

body {
  font-family: monogram, monospace;
  font-size: 3rem;
  overflow: hidden;
}

#app {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.textbox-container {
  display: none;
}

#textbox {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 2vh;
  min-height: 10vh;
  background: white;
  border-radius: 3px;
  outline-style: solid;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  word-spacing: 0.2rem;
  filter: drop-shadow(0 0 0.75rem rgb(112, 112, 112));
  /* overflow: auto; */
}

.ui-text {
  margin: 0;
  user-select: none;
  font-size: 2rem;
}

.ui-close-btn {
  font-family: monogram, monospace;
  border-style: none;
  border-radius: 3px;
  padding: 1rem;
  font-size: inherit;
}

.btn-container {
  align-self: flex-end;
  margin-top: 1rem;
}

.note {
  position: absolute;
  left: 5%;
  top: 1vh;
  display: flex;
  flex-direction: column;
  color: rgb(238, 238, 238);
}
