html {
    background-color: #f0f0fc;
    color: #101010;
    font-family: "Inter", sans-serif;
}

a,
a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-weight: 400;
    text-align: center;
}


#page-choices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4em;
    margin-top: 4em;
}

.page-choice-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.page-choice-button>img {
    width: 300px;
    height: 300px;
    max-width: 100%;
    border-radius: 2em;
}

.page-choice-button>span {
    font-size: 18pt;
}

#nextcloud-icon {
    background-color: #0081c8;
}

@media only screen and (max-width: 950px) {}

@media (prefers-color-scheme: dark) {

    html,
    body {
        background-color: #1a1a1f;
        color: #f0f0f0;
    }
}