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

body {
  font-family: monogram, monospace;
  font-size: 2rem;
  background-color: black;
  flex: 1;
  overflow-y: auto;
  color: grey;
  padding-top: 100px;
  margin-inline-end: auto;
}

.container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

#app {
  width: 100%;
  height: calc(100vh - 60px);
  margin-top: 60px;
  position: relative;
}

canvas {
  display: block;
  z-index: 1;
}

#textbox {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 2vh;
  min-height: 10vh;
  background: white;
  color: black;
  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));
}

.ui-text {
  margin: 0;
  user-select: none;
}

.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);
}

.navbar {
  height: 51.3px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.value-header-text {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  word-wrap: break-word;
  font-family: Verdana, sans-serif;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
  color: grey;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-family: Verdana, sans-serif;
  font-size: 16px;
}
