/*
essential styles:
these make the slideshow work
*/
#slides{
	position: relative;
	height: 300px;
	padding: 0px;
	margin-left: 25%;
	margin-top: 1%;
	
	list-style-type: none;
	
}

.slide{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	opacity: 0;
	z-index: 1;

	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
}

.showing{
	opacity: 1;
	z-index: 2;
}



/*
non-essential styles:
just for appearance; change whatever you want
*/

.slide{
	font-size: 40px;
	padding: 40px;
	box-sizing: border-box;
	
}

.slide:nth-of-type(1){
	
}
.slide:nth-of-type(2){
	
}
.slide:nth-of-type(3){

}
.slide:nth-of-type(4){
	
}
.slide:nth-of-type(5){
	
}
.controls {margin-left: 53%; margin-top:8%; background-color:brown}