body {
    --header-size: 2rem;
    --header-y-margin: 0.5rem;

    --x-margin: 2rem;

    /* 1337 Cheri works as a color hex
     * C: C | h: 4 | e: 3 | r: 12 | i: 1 */
    --color-cheri: #C43121;
    --color-black: #12110D;

    background: #e8dac8;
    /* Cheri is not a horse. Cheri is a deer. */
    font-family: 'Ronzino', 'Arial', sans-serif;
    font-weight: normal;

    color: var(--color-black);

    margin: 0;
    padding: 0;
}

.mono {
    font-family: 'PragmataProI Liga', monospace;
}

h1, h2, h3, h4 {
}

.contained {
    max-width: 60rem
}

.cheri-portrait {
    position: absolute;
    right: var(--x-margin);
    bottom: var(--x-margin);

    width: 48rem;

    border: var(--color-black) 2px solid;
    border-right: none;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    > img {
        border: var(--color-black) 2px solid;
        border-bottom: none;

        position: absolute;
        right: 0;
        bottom: 0;

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

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 4rem;

    /*border-top: var(--cheri-hex) 2px solid;*/
    border-bottom: var(--color-black) 2px solid;
}

.header__logo {
    background: var(--color-cheri);
    padding: var(--header-y-margin) var(--x-margin);
    font-size: 1rem;

    font-weight: bold;

    color: white;
}

.header__nav {
    padding-right: var(--x-margin);

    ul {
        list-style: none;
    }

    a {
        color: var(--color-black);
    }
}

.aside-title {
    font-weight: bold;

    position: absolute;

    top: calc(var(--header-y-margin) + 2px + 4rem);
    right: calc(var(--x-margin) * 1);

    font-size: 6rem;
    line-height: 0.7;

    line-break: anywhere;

    margin: 1.5rem 0 0;

    text-align: right;

    width: 8rem;
}

.big-title {
    font-weight: bold;

    font-size: 6rem;
    line-height: 0.7;

    margin: var(--x-margin);
}

.small-title {
    font-weight: 500;

    font-size: 4rem;
    line-height: 0.7;

    margin: var(--x-margin);
}

.smaller-title {
    font-weight: normal;

    font-size: 2rem;
    line-height: 0.7;

    margin: var(--x-margin);
}

.smallerer-title {
    font-weight: normal;

    font-size: 1rem;
    line-height: 0.7;

    margin: var(--x-margin);
}

.text {
    margin: var(--x-margin);
    font-weight: lighter;
}

.birthday {
    position: absolute;
    top: -0.625rem;
    left: 12rem;
    right: 12rem;

    text-align: center;

    pointer-events: none;

    z-index: -1;
}

#confetti {
    position: absolute;
    top: 0;
    left: 0;

    pointer-events: none;

    width: 100%;
    height: 100vh;

    z-index: 1;
}
