.hero {
    aspect-ratio: 5/2;
    background: hsl(var(--black));
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-content {
    position: relative;
    text-align: center;
    color: hsl(var(--white));

}

@media screen and (max-width: 749px) {
.hero {
    aspect-ratio: 5/4;
}
}