/* Style the slider container to make it full screen */
.slider-container {
    position: relative;
    width: 100%;
    height: 100vh; /* 100% of the viewport height */
    overflow: hidden; /* Hide overflow content */
}

/* Style the slider itself */
.slider {
    width: 100%; /* 100% width of the container */
    height: 100%; /* 100% height of the container */
}

/* Style the images within the slider */
.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain image aspect ratio and cover the container */
}


/* Styles for mobile screens (centered at the top with slight zoom) */
@media (max-width: 768px) {
    .slider {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: 100vh; /* Full viewport height */
        overflow: hidden;
    }

    video {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 100vh;
    }
}