section.hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    box-shadow: 0 0 20px black;

    video {
        position: absolute;
        left: 0;
        top: 0;
        width: var(--sectionWidth);
        height: 100%;
        z-index: -100;
        object-fit: cover;
    }

    a.brand {
        display: block;
        margin: 0 auto;
        width: 150px;
        margin-top: 22px;

        img {
            border-radius: 50%;
            box-shadow: 0 0 20px var(--hiBackground);
        }
    }

    div.headline {
        position: absolute;
        right: 0;
        bottom: 0;
        text-align: right;
        z-index: 1;
        padding-right: 22px;
        padding-left: 22px;

        p.brand {
            font-size: 3.8rem;
            font-weight: bold;
            font-family: 'Bike Park', serif;
            color: var(--hiGreen);
            text-shadow: 0 0 20px var(--hiBackground);
        }

        h1 {
            font-size: 4.2rem;
            font-family: 'Bike Park', serif;
            color: white;
            -webkit-text-stroke: 0.5px black;
        }
        
        @media (max-width: 960px) {
            p.brand {
                font-size: 3.6rem;
            }

            h1 {
                font-size: 3.8rem;
            }
        }

        @media (max-width: 890px) {
            p.brand {
                font-size: 3.2rem;
            }

            h1 {
                font-size: 3.4rem;
            }
        }

        @media (max-width: 768px) {
            p.brand {
                font-size: 2.6rem;
            }

            h1 {
                font-size: 2.8rem;
            }
        }
    }

    @media (max-width: 650px) {
        height: 40vh;

        a.brand {
            width: 90px;
        }

        div.headline {
            text-align: center;
            left: 0;
            right: 0;

            p.brand {
                font-size: 2rem;
            }

            h1 {
                font-size: 1.7rem;
            }
        }
    }

    @media (max-width: 410px) {
        height: 45vh;
    }
}