JSFiddle - React, Tailwind, and code Playground

HTML

<div class="effect">
  <span>Path of Exile - Anmeldelse</span>
</div>

CSS

*{
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
}
.slideshow-block{
  float: left;
  margin:10px;
	position: relative;
	width: 150px;
	height: 150px;
	overflow: hidden;
	background: #111 url('https://farm1.staticflickr.com/38/82549647_36259bcf44_q.jpg');
}

.slides{
	z-index:0;
	visibility: hidden;
}
.slides.active{
	visibility: visible;
}
.clear{
  clear: both;
 
}