@font-face {
    font-family: junk;
    src: url(data/JunkDog.ttf);
}

@font-face {
    font-family: verd;
    src: url(data/verdana.ttf);
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: Verdana, Arial;
    background-color: #15190D;
}

*::-webkit-scrollbar {
    width: 0.5em;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
}
 
*::-webkit-scrollbar-thumb {
  background-color: slategray;
  outline: none;
}

main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-indicator {
    font-size: 14px;
    color: #6DCA00;
    font-weight: bold;
}

.overlay {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    background-color: rgba(20,20,20, 0.5);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 1rem;
    font-family: monospace;
    border-radius: 1rem;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

.overlay-widget {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 1rem;
}

.overlay-widget-name {
    font-weight: bold;
}

.overlay-widget-value {
    text-align: left;
}

#renderer {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: rgba(20,20,20, 0.5);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.75rem;
    font-family: monospace;
    border-radius: 0.5rem;
    padding: 0.25rem;
}
