h1.home-title {
    font-family: "Sketch Serif", Georgia, "Times New Roman", Times, serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--bulma-primary-invert)
}

span.home-title-small {
    font-size: 61.8%;
}

div.splash-mask {
    width: 100%;
    max-width: calc(600px * (4032 / 2492));
    aspect-ratio: 4032 / 2492;

    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically */

    mask-image: radial-gradient(ellipse closest-side, black 80%, transparent 98%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    -webkit-mask-image: radial-gradient(ellipse closest-side, black 80%, transparent 98%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    overflow: hidden;
}

picture.splash-image {
    max-width: 100%;
    height: auto;
    animation:
        bob 3s ease-in-out infinite,
        flicker 1.5s ease-in-out infinite alternate;
}

/* Vertical bob animation */
@keyframes bob {
  0%   { transform: translateY(0px); }
  25%  { transform: translateY(-1%); }
  75%  { transform: translateY(1%); }
  100% { transform: translateY(0px); }
}
@keyframes flicker {
  from { filter: brightness(1.00) contrast(1.00); }
  to   { filter: brightness(1.10) contrast(0.90); }
}

.info-box {
    height: 100%;
}

.story-art {
    max-height: 320px;
    width: auto;
}

.prehunt-story {
    font-family: 'LM Roman 10', 'Times New Roman', 'Times', serif;
}

/* Blocks snowflakes */
section.in-front {
    position: relative;
    z-index: 100;
    background-color: var(--bulma-body-background-color);
}

/* Snowflakes */
:root {
    /* Adjust this value to change how long a full snowflake drift lasts */
    --snowflake-speed: 3s;
    --snowflake-distance: 140vh;
}

.snowflakes {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    color: var(--anti-flash-white);
    font-size: 2em;
    z-index: 10;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
    --dx: calc(var(--snowflake-distance) * -2.9252948886);
    --dy: calc(var(--snowflake-distance));
    animation: snowflake-drift calc(var(--snowflake-speed) * var(--speed-multiplier, 1)) linear infinite;
    animation-delay: var(--animation-delay, 0s);
    transform: translate3d(0, 0, 0);
}

.snowflake .inner {
    display: block;
}

@keyframes snowflake-drift {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(var(--dx), var(--dy), 0);
    }
}

.snowflake:nth-of-type(1) {
    top: -12vh;
    left: 52vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.15);
    --speed-multiplier: 0.95;
}

.snowflake:nth-of-type(2) {
    top: 4vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.40);
    --speed-multiplier: 1.05;
}

.snowflake:nth-of-type(3) {
    top: -12vh;
    left: 60vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.65);
    --speed-multiplier: 1.20;
}

.snowflake:nth-of-type(4) {
    top: 12vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.20);
    --speed-multiplier: 0.85;
}

.snowflake:nth-of-type(5) {
    top: -12vh;
    left: 68vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.90);
    --speed-multiplier: 0.90;
}

.snowflake:nth-of-type(6) {
    top: 22vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.55);
    --speed-multiplier: 1.35;
}

.snowflake:nth-of-type(7) {
    top: -12vh;
    left: 76vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.30);
    --speed-multiplier: 1.10;
}

.snowflake:nth-of-type(8) {
    top: 32vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.75);
    --speed-multiplier: 1.15;
}

.snowflake:nth-of-type(9) {
    top: -12vh;
    left: 84vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.50);
    --speed-multiplier: 1.05;
}

.snowflake:nth-of-type(10) {
    top: 42vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.95);
    --speed-multiplier: 0.92;
}

.snowflake:nth-of-type(11) {
    top: -12vh;
    left: 92vw;
    --animation-delay: calc(var(--snowflake-speed) * -0.60);
    --speed-multiplier: 0.88;
}

.snowflake:nth-of-type(12) {
    top: 52vh;
    right: -12vh;
    --animation-delay: calc(var(--snowflake-speed) * -0.35);
    --speed-multiplier: 1.25;
}

/* Keep Scrolling Indicator */

.keep-scrolling {
    position: fixed;
    bottom: 24px;
    right: 48px;
    height: 30px;
    opacity: 0.5;
}

@keyframes jumpInfinite {
    0% {
        margin-bottom: 0;
    }

    50% {
        margin-bottom: 1.5rem;
    }

    100% {
        margin-bottom: 0;
    }
}

.keep-scrolling-chevron {
    animation: jumpInfinite 1.5s infinite;
}
