/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------- LINK SETTINGS ---------------------*/
/* unvisited link */
a:link {         
    color: white;
		}
/* visited link */
a:visited {
    color: grey;
		}
/* mouse over link */
a:hover {
    color: white;
		}
/* selected link */
a:active {
    color: grey;
		}

/* --- clears the browsers settings ---- THIS CLOSES THE RESET ---- */

body {
	background-image: url("imgs/spxmas2.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	}

#wrapper {
	width:auto; 
	Max-width:1000 px;
	margin:2% auto;
	border:0px solid red;
	} 

header {
	border:0px solid blue;
	} 

h1 {
	border:0px solid green;
	font-size: 50px;
	font-family: 'Roboto', sans-serif;
	color: white;
	} 
	
#closebtn  {
  display: block;
	}
	

nav {
	border:0px solid teal;
	text-align:center;
	display: none;
	}
	
#ham-menu {
	display: block;
	margin: 0 auto;
	width: 10%;
	}

nav ul{
	border:0px solid orange;
	}
	
nav li{
	display: block;
	margin:1%;
	width: auto;
	text-align:center;
	border:0px solid yellow;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}

nav li a{
	display: block;
	text-decoration: none;
	}
/*-------------- shedpub upper main body ---------------*/
#main {
	padding: 5%;
	border-radius: 25px;
	border:0px solid pink;
	background: rgba(0,0,0,.6); /* darkens the main with opacity */
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}

#intro-image {
	float: none;
	width: auto;
	min-height: 300px;
	margin-bottom: 1%;
	border:0px solid red;
	}
	
#intro-text {
	float: none;
	width: auto;
	min-height: 300px;
	margin-bottom: 1%;
	border:0px solid green;
	padding:0%;
	text-indent: 50px;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}	
	
#intro-text2 {
	float: none;
	width: auto;
	min-height: 300px;
	margin-bottom: 1%;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}
	
/*-------shedpub mainbody entry---------------------------*/

#main22 {
	padding: 5%;
	border-radius: 25px;
	border:0px solid pink;
	background: rgba(0,0,0,.6); /* darkens the main with opacity */
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}

	
#intro-text22 {
	float: none;
	width: auto;
	min-height: 300px;
	margin-bottom: 1%;
	border:0px solid green;
	padding:0%;
	text-indent: 50px;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	}
	
/*-----------------------FIRST LETTER BIG-------------*/	
	p::first-letter { 
    font-size: 140%;
    color: white;
	}

img {
	width:100%;
	border-radius: 25px;
	}
	
/*------------------SLIDESHOW-------------*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 350px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
	
/* ------------------END GALLERY-------------*/		
	
.clear {
	clear: both;
	}
	
footer {
	border:0px solid red;
	text-align: center;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	color: rgba(255,255,255,.4);
	}
		
	/*----------------tablet styles-----------------*/
	
@media only screen and (min-width: 500px) and (max-width: 756px) {
	
	#wrapper { 
		width: 80%;
		}
}
	/*---------------desktop styles-----------------*/
	
@media only screen and (min-width: 766px){
	
	#wrapper { 
		width: 80%;
		}
		
	nav {
		display: block;
		}
	
	#intro-text{
		float: left;
		width: 47%;
		margin-left:2.5%;
		}

	#intro-image{
		float: left;
		width: 47%;
		margin-right:2.5%;
		}

	nav li {
		display: inline-block;
		width: 5em;
		}
	
	#ham-menu {
	display: none;
		}
		
	#closebtn {
	display: none;
		}
}

	
	

