* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

/* Base video styling */
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet view */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
        /* slightly smaller on tablets */
    }

    video {
        object-fit: cover;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        /* reduce height for smaller screens */
    }

    video {
        object-fit: cover;
    }
}