/* CSS Document voor maken van een kleine slideshow volgens mindert adema*/
.slideshow {
width:100%;
height:auto;
padding:5px;
box-sizing:border-box;
position:relative;
}

.slideshow img {
position:absolute; 
animation:slideshow 20s infinite; 
opacity:0; 
width: 100%;
height: auto;
}

@keyframes slideshow {
45%{opacity:1;
} 
45%{
opacity:0;
}
}

..slideshow img:nth-child(1){animation-delay:0s;} 
.slideshow img:nth-child(2){animation-delay:5s;}
.slideshow img:nth-child(3){animation-delay:10s;}
.slideshow img:nth-child(4){animation-delay:15s;}
.slideshow img:nth-child(5){animation-delay:20s;}

.socialdetails {
    list-style-type:none;
}


