#slider{
	position: relative;
}
#slider img:not(:first-child){
	display: none;
}
.prev, .next{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	font-size: 30px;
	width: 10%;
	height: 100%;
	font-size: 40px;
	color: rgba(255, 255, 255, 0.8);
}
.prev{
	top: 0;
	left: 0;
}
.next{
	top: 0;
	right: 0;
}
.prev:hover, .next:hover{
	background-color: rgba(255, 255, 255, 0.1);
	cursor: pointer;
}
