﻿/*
essential styles:
these make the slideshow work
*/
#slides{
	position: relative;
	height: 250px;
	padding: 5px;
	margin: 5px;
}

.slide{
	position: absolute;
	left: 0px;
	top: 0px;
	/*width: 100%;
	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;
}


.controls{
	display: none;
}


/*
non-essential styles:
just for appearance; change whatever you want
*/

.slide{
	font-size: 14px;
	padding: 10px 40px;
	box-sizing: border-box;
	/*background: #333;*/
	color: #fff;
    background-size: cover;
}

.slide:nth-of-type(1){
	/*background-color: red;*/
}

.slide:nth-of-type(2){
	/*background-color: orange;*/
}


.slide:nth-of-type(3){
	/*background-color: green;*/
}

#controls{
	position: relative;
	height: 50px;
    margin: 20px 10px;
    float: right;
    list-style-type: none;
}

.controls{
  background: rgba(65,38,0,1);
  color: rgba(255,234,203,1);
  border: none;
  padding: 5px 0px;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid rgba(255,234,203,1);
  margin: 5px 0px 0px 5px;
  width: 30px;
}

.controls:hover,
.controls:focus{
  background: rgba(248,208,148,1);
  color:rgba(92,57,6,1);
  transition: 300ms;
}

.container{
  position: relative;
}

.buttons{
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
  font-size: 0px;
}