@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500&display=swap');

 body {
	 margin: 0;
	 padding: 0;
	 background: black;
}
 .ken-burns-slideshow {
	 position: absolute;
	 top: 0;
	 left: 0;
	 z-index: -2;
	 margin: 0;
	 padding: 0;
	 width: 100%;
	 height: 100%;
	 overflow: hidden;
	 list-style-type: none;
}
 .ken-burns-slideshow .slide {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-size: cover;
	 background-position: center;
	 opacity: 0;
	 transform: scale(1.2);
	 animation: kenburns 24s linear infinite;
}
 .ken-burns-slideshow .slide:nth-child(1) {
	 animation-delay: 0s;
}
 .ken-burns-slideshow .slide:nth-child(2) {
	 animation-delay: 6s;
}
 .ken-burns-slideshow .slide:nth-child(3) {
	 animation-delay: 12s;
}
 .ken-burns-slideshow .slide:nth-child(4) {
	 animation-delay: 18s;
}
 #slide1 {
	 background-image: url("../images/albums/so-wok.jpg");
}
 #slide2 {
	 background-image: url("../images/albums/wakat.jpg");
}
 #slide3 {
	 background-image: url("../images/albums/_burkina-faso.jpg");
}
 #slide4 {
	 background-image: url("../images/albums/nabalum.jpg");
}
 @keyframes kenburns {
	 10% {
		 opacity: 1;
	}
	 25% {
		 opacity: 1;
		 transform: scale(1);
	}
	 40% {
		 opacity: 0;
		 transform: scale(1);
	}
}
 section {
	 display: grid;
	 place-items: center;
	 height: 100vh;
	 color: white;
}
 section h1 {
	font-size: 250%;
	text-shadow: 0 2px 2px black;
	position: absolute;  
    left: 50%;                       
    top: 50%;   
    top: 45%;
    text-align: center;                     
    transform: translate(-50%, -50%);
} 