@charset "UTF-8";
/* CSS Document */
/* From: https://www.sitepoint.com/make-a-simple-javascript-slideshow-without-jquery/  */
/*
essential styles:
these make the slideshow work
*/
#slides{
	position: relative;
    width: 100vw;
	height: 100vh;
    list-style-type: none;
	float: left;
	margin-bottom: 4.5rem;
}

.slide{
    position: absolute;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    z-index: 1;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}
.slide:after {
  content: "";
  clear: both;
  display: table;
	padding-bottom: 100px;
}

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



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

.slide{
    font-size: 10px;
    width: 100vw;
    height: 100vh;
	padding: 0px;

	background: #222222;
    color: #fff;
}

.slide:nth-of-type(1){
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/dp_arada_stoves_01.jpg");
}
.slide:nth-of-type(2){
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("../images/dp_arada_stoves_02.jpg");
}



