Fit Food Factory Tour

/* Default styling for the video container */ .video-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; background-color: black; /* Set a background color to cover any potential gaps */ } /* Adjust the video size to cover the entire viewport on mobile */ .video-container video { width: 100%; height: 100%; } /* Apply styles only on desktop screens (greater than or equal to 768px width) */ @media (min-width: 768px) { /* Set the video width and height to 50% on desktop */ .video-container video { width: 50%; height: 50%; } }