hero {
    width: 100%;
    height: 70vh;
    background-color: #111;
    display: flex;
    position: relative;
    justify-items: left;
    align-items: center;
    overflow: hidden;
}

hero name {
    font-size: 10vh;
    font-weight: bold;
    margin-left: 10vw;
    color: white;
    width: 1px;
    text-shadow: 0px 0px 0vh #666;
    transition: text-shadow 1000ms ease-in-out;
    z-index: 1;
}

hero name.glow {
    text-shadow: 0px 0px 10vh #999;
}

hero video {
    z-index: 0;
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

hero video.semitrans {
    transition: opacity 1000ms ease-in-out;
    opacity: 0.5;
    overflow: hidden;
}

@media (max-aspect-ratio: 1/1) {
    hero name {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}
