html, body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 12pt;
    text-align: center;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}
section {
    position: fixed;
    top: 0;
    height: 100%;
}

#loader {
    position: fixed;
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
    background: rgb(255, 0, 0);
    border-radius: 100%;
    transition: background 0.25s linear;
}
html[data-connect="loading"] #loader {
    background: rgb(255, 160, 0);
}
html[data-connect="true"] #loader {
    background: rgb(0, 255, 0);
}
html[data-offline="true"] #loader {
    display: none;
}
