/*
essential styles:
these make the slideshow work
*/
#slides{
	position: relative;
	height: 400px;
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.slide{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 400px;
	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{
	
	box-sizing: border-box;
	background: #333;
	color: #fff;
	
}
.slide h1 {
	font-size: 40px;
	padding-top: 40px;
	padding-left: 40px;
	padding-bottom:0;
}

.slide h2 {
	font-size: 36px;
	padding-left:40px;
	padding-top:0;
	}
	
.slide h3 {
	font-size: 30px;
	padding-left:40px;
	padding-top:0;
	}
.slide:nth-of-type(1){
	
	background-image: url(/img/snake-1.jpg);
}
.slide:nth-of-type(2){
	background: orange;
	background-image: url(/img/image11.jpg);
	
}
.slide:nth-of-type(3){
	background: green;
	background-image: url(/img/hay.jpg);
}
