/* CSS */
.hero {
    background-color: #296600;
}
.hero .content {
    color: #fff;
    line-height: normal;
}
.hero .content h1 {
    font-size: clamp(2.5em, 4vw, 5em);
    line-height: 1.1;
}

.fancy-header {
    color: var(--possibly-green);
    font-size: clamp(2.25em, 4vw, 3.5em);
    line-height: 1.1;
}
.fancy-header > span {
    display: inline-block;
    position: relative;
}
.fancy-header > span::after {
    content: '';
    display: block;
    width: 100%;
    height: 1.1em;
    position: absolute;
    top: 1em;
    background: url(/blog/app/wp-content/uploads/2020/08/red-underline.png) no-repeat;
    background-position: top;
    background-size: contain;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(1px);
}

.ben-mascot {
    position: relative;
    top: -20rem;
}
