@charset "utf-8";
/* CSS Document */

        .slideshow-container {
            position: relative; 
            width: 100%;
            max-height: 720px; 
			max-width: 1920px;
            margin: 2rem auto; 
            aspect-ratio: 16 / 9; 
            background-color: #374151; 
            border-radius: 0.5rem; 
            overflow: hidden; 
        }

        .slideshow-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        @media (orientation: portrait) {
            .iframe-container {
                aspect-ratio: 1 / 1; 
				max-width: 100%;
				padding-top: 100%;
			}
}