body {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: min-content;
    height: min-content;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#head {
    box-sizing: border-box;
    width: 100%;
}

#content {
    box-sizing: border-box;
    width: 100%;
    flex-grow: 1;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--navbar-background-color) 10%, white 90%), white, white, color-mix(in srgb, var(--navbar-background-color) 5%, white 95%));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

#footer {
    box-sizing: border-box;
    width: 100%;
    background-color: color-mix(in srgb, var(--navbar-background-color) 5%, white 95%);
}

h1 {
    margin: 24px 8px;
    font-family: Inter;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

a {
    margin: 8px;
    font-family: Inter;
    font-size: 16px;
    font-weight: normal;
    color: black;
    text-decoration: underline;
    text-align: center;
}

:not(:defined) {
    display: none;
}
