/*
	Fullscreen crossfading background slideshow.
	Replaces the Supersized jQuery plugin (v3.2.7) with plain CSS/JS —
	the old version sized a real <img> to a 960px minimum width, so it
	could not fill a phone screen; background-size:cover works at any size.
*/

body { background:#111; }

#bg-slideshow { position:fixed; inset:0; z-index:-999; overflow:hidden; background:#111; }

#bg-slideshow .bg-slide {
	position:absolute; inset:0;
	background-size:cover;
	background-position:center;
	opacity:0;
	transition:opacity 2.5s ease-in-out;
}

#bg-slideshow .bg-slide.active { opacity:1; }
