body {
	font-family: Arial;
}
* {
	box-sizing: border-box;
}
.viewport {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	transform: translateX(-50%) translateY(-50%);
    padding: 10px;
    border: 1px solid #cccccc;
}
.slides {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

.slide {
	background-color: #ff3399;
	width: 100%;
	height: 100%;
	padding: 10px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	color: #fff;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	transform-origin: 50% 50%;
	
	text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}
.slide:nth-child(1) {
	background: hsl(0, 100%, 60%);
}
.slide:nth-child(2) {
	background: hsl(60, 100%, 60%);
}
.slide:nth-child(3) {
	background: hsl(120, 100%, 60%);
}
.slide:nth-child(4) {
	background: hsl(180, 100%, 60%);
}
.slide:nth-child(5) {
	background: hsl(240, 100%, 60%);
}
.slide:nth-child(6) {
	background: hsl(300, 100%, 60%);
}
.slide span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 40px;
	font-weight: bold;
	transform: translateX(-50%) translateY(-50%);
}
