/* my-video.css */

.watchDemoreel {
    text-align: left;
    position: relative; /* Helps with responsive video scaling */
   margin-bottom: -1rem; 
}

.watchDemoreel iframe {
    width: 100vw; /* Full viewport width */
    height: 56.25vw; /* Aspect ratio 16:9 */
    max-width: 100%; /* Ensures it doesn't exceed container width */
    max-height: 100vh; /* Ensures it doesn't exceed viewport height */
    border: none;


}
