body {
    color: rgb(195, 198, 203);

    margin: 0;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    font-family: "Arial", "Helvetica", sans-serif;
    font-size: 11pt;
    font-weight: 400;
    line-height: 1.9;
}

a:link, a:visited, a:hover, a:active {
    color: #d7b702;
    font-weight: bold;
    text-decoration: none;
}

div, footer {
    border-radius: 8px;
    padding: 32px;
    background: rgb(53, 59, 63);
    margin-inline: auto;
    margin-block: 5em;

    &.messageBox {
        width: fit-content;
        max-width: 45em;
    }
}

footer {
    display: none;
    div:not([hidden]) ~ & {
        display: block;
    }

    margin-inline: 24px;
    margin-bottom: 24px;

    text-align: center;
    cursor: default;

    a {
        white-space: nowrap;
    }
}
