section.hero-banner {
    display: grid;
    position: relative;
    overflow: hidden;
    background-color: var(--c-blue-mminesweeper);
    /*background-image: linear-gradient(to top right, var(--c-blue-mminesweeper) 50%, var(--c-red-mminesweeper));*/
    grid-template-rows: auto auto;
}

section.hero-banner video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
    filter: grayscale(100%);
}

#page-title-container {
    padding-top: 5rem;
}

section.hero-banner h1 {
    font-size: 2rem;
    color: var(--c-grey-3);
    margin: 0 1rem;
}
section.hero-banner h2 {
    font-size: 1.25rem;
    color: var(--c-grey-3);
    margin: 0 1rem;
    margin-top: 2rem;
}
 
section.hero-banner canvas#wave-canvas {
    width: 100%;
    height: 10em;
    position: relative;
    bottom: -1px;
}

a > img {
    height: 100%;
    width: 100%;
}

@media (min-width: 71rem) {
    #page-title-container {
        padding-left: calc(50vw - var(--s-text-width) / 2); 
        padding-right: calc(50vw - var(--s-text-width) / 2); 
        padding-bottom: 0;
    }
}
