* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    pointer-events: none;
}

body {
    background-color: gray;
}

#main {
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: block;
    pointer-events: all;
}

#info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: calc(100vh - 20px);
    position: fixed;
    top: 10px;
    left: 10px;
    color: white;
    text-shadow: 0 0 1px black;
    opacity: 0.5;
}
#info > * {
    margin: 2px 0 0 7px;
}