html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #181818;
    display: flex;
    flex-direction: column;
    color: white;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.note {
    font-size: 0.9em;
    color: #666;
}

footer.note {
    text-align: center;
    padding: 10px;
}
footer a {
    color: black;
    text-decoration: none;
}

a {
}