html,
body {
    margin: 0;
    padding: 0;

    background: linear-gradient(180deg, var(--primary-background) 61.8%, var(--body-background) 100%);
    color: var(--primary-text);

    font-family: sans-serif;
    font-size: 1.25rem;

    min-height: 100vh;
    min-height: 100dvh;

    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: column;
    place-content: center;
    padding: 1rem;

    min-height: 100vh;
    min-height: 100dvh;
}

section {
    width: min(20rem, 100vw);
    width: min(20rem, 100dvw);

    align-self: center;
    text-align: center;
}

.name {
    padding: 0;
    margin: 0 0 1rem 0;
    font-size: 200%;
}
.full-name {
    padding: 0 0 1rem 0;
    margin: 0;
    font-size: 100%;
    font-weight: lighter;
}

p:first-of-type {
    margin-top: 2rem;
}

.ages-grid {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;

    position: relative;

    height: 2em;

    font-size: 150%;
}

/* Age grid show things */
.age-item {
    opacity: 1;
    position: absolute;
    transition: all .5s ease-in-out;

    width: 100%;
    overflow: hidden;

    text-overflow: ellipsis;
}

.age-item-hidden {
    transform: scale(1.5, 0);
    opacity: 0;
}

.review {
    display: flex;
    flex-direction: column;
    gap: .5rem;

    padding: 1rem 0;

    border-top: 1px dashed var(--primary-text);
}

.review:last-of-type {
    padding-bottom: 0;
}

canvas {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;

    height: 100vh;
    width: 100vw;

    pointer-events: none;
    user-select: none;
}

.party-mode {
    align-self: center;
    margin-top: 5em;
}
