/* CSS */
.hero {
    margin-top: 50px;
}
.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: 0;
}

.hero-header {
    font-size: 35px;
    color: #00186a;
    text-align: center;
}

.hero-subheader {
    font-size: 45px;
    color: #4a90e2;
    line-height: 1;
    text-align: center;
}

.hero-desc {
    text-align: center;
    margin-top: 15px;
}

.btn-success {
    background-color: #ff6347;
    border-color: #ff6347;
}

@media (max-width: 600px) {
    header .navbar-brand svg {
        max-width: 240px;
    }
}

@media (max-width: 360px) {
    header .navbar-brand svg {
        max-width: 200px;
    }
}

