* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 1;
}

.overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.15);

    z-index: 2;
    pointer-events: none;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 3;

    text-align: center;
    color: white;

    font-family: Arial, Helvetica, sans-serif;
}

.content h1 {
    font-size: clamp(40px, 7vw, 100px);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.content p {
    margin-top: 12px;

    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.8;
}