@import '/stylesheets/google-font.css';
html, body {
    padding: 8px;
    font-family: 'Poppins', sans-serif;
}
body, div {
    display: flex;
    flex-direction: column;
    align-items: center;
}
input {
    display: inline;
}
#hide {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;
    background-color: white;
}
@media (prefers-color-scheme: dark) {
    html, body, div, #hide {
        color: white;
        background-color: #101c28;
    }
}
