@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

#display {
    position: fixed;
    left: 0;
    top: 0;

    height: 100vh;
    width: 100vw;

    pointer-events: none;
    z-index: -100;
}

* {
    padding: 0;
    margin: 0;
}

html, body {
    font-family: Ubuntu, sans-serif;
}

.info {
    padding: 10px;
    margin: 10px;

    background-color: black;
    color: white;
    width: fit-content;
}

.info h1 {
    margin-bottom: 1rem;
}

.info select {
    width: 100%;
    padding: 10px;
}

.banner {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100vw;
    padding: 10px;

    background-color: black;
    color: white;
}

.render-info {
    position: fixed;
    right: 0;
    top: 0;

    background-color: black;
    color: white;

    padding: 10px;
}