body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 100svh;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 100%;
    max-width: var(--max-width);
}

main section#title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    width: 100%;
    text-align: center;
}

main section#title h1.title {
    font-size: 2em;
}

main section#title h2.caption {
    font-size: 1.4em;
    color: rgb(90, 90, 90);
}

main section#content {
    width: 100%;
    padding: 20px;
}
