header-0 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 0;
    background-image: var(--image);
    background-position: center;
    background-size: cover;

    >h1-title,
    span {
        color: white;
    }

    &:not(:has(>video)) {
        background-size: cover;
    }

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .2);
        z-index: 2;
        transition: background-color .2s ease, backdrop-filter .2s ease;
        backdrop-filter: blur(5px) opacity(0);
        cursor: pointer;
    }

    &.hover {
        &::before {
            background-color: rgba(255, 255, 255, .2);
            backdrop-filter: blur(5px);
        }
    }

    >video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        object-fit: cover;
        object-position: center;
    }
}

.header-1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    z-index: 0;
}

header-0>h1-title,
.header-1>h1-title {
    position: relative;
    z-index: 3;
    margin-block: 7.5rem;
}

header-0 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 0;
    background-position: center;
    background-size: cover;

    >h1-title {
        color: white !important;
        text-shadow: rgba(0, 0, 0, .8) 0 0 10px;
        font-size: 7rem;
        position: relative;
        z-index: 3;
        margin-block: 5.25rem;

        >span.red {
            box-shadow: rgba(0, 0, 0, .8) 0 0 10px;
        }
    }

    &:not(:has(>video)) {
        background-size: cover;
    }

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .2);
        z-index: 2;
    }

    >video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        object-fit: cover;
        object-position: center;
    }
}