#app {
    width: 100%;
    height: 100%;
    position: relative;
}

#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;
}

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

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

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

.ui-close-btn {
    
    border-style: none;
    
    
    font-size: inherit;
}

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

.note {
    position: absolute;
    left: 5%;
    top: 1vh;
    display: flex;
    flex-direction: column;
}

#project-tooltip {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  pointer-events: none;
  font-family: monospace;
}
