@import url(/static/css/roboto-flex.css);

html, body {
    font-family: 'Roboto Flex', sans-serif;

    height: 100%;
    margin: 0;

    background-color: rgb(69, 69, 69);
}

input {
    display: block;
    border-radius: 5px;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#h1 {
    font-size: 1.5vw;
}

@media (max-width: 1000px) {
    #h1 {
        font-size: 4vw;
    }
}

.hidden {
    display: none;
}