* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
	font-family: "Burtons";
	src: url('fonts/Burtons.otf') format('opentype');
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
  }

body {
	color:#354e19;
	background:#ddd8bf;
	font-family:Arial;
	max-width: 900px;
	margin-left:auto;
	margin-right:auto;
}
h1 {
	color:#ad7e62;
	text-align:center;
	font-size: 3em;
}
h2,h3 {
	color:#ad7e62;
	text-align:center;
	font-size: 2em;
}
h4 {
	color:#ffd47b;
	text-align:center;
	font-size: 1.5em;
}

p {
	font-size: 1.25em;
	padding: 10px;
}
a:link {
	color:#FF6700;
}
a:visited {
	color: #ffa800;
}
table {
	border-radius: 5px;
}
img {
	border-radius: 10px;
}
input {
	width: 494px ;
	height: 50px;
	border-radius: 25px;
	background-color: #ffd47b;
	border: none;
	padding: 12px 20px;
}
button {
	background-color: #FF6700;
	border: none;
	border-radius: 2em;
	color: #dbdbce;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	padding: 10px;

}

#scroller {
	border-radius: 25px;
	background: #73AD21;
	padding: 20px;
	width: 600px;
	height: 600px; 
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  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;
  user-select: none;
}

/* 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;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #717171;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #a5a5a5;
}

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

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

/* Mobile Styles */
@media only screen and (max-width: 400px) {
  body {
	margin-left:30px;
	margin-right:30px;	
 }
  #scroller {
	border-radius: 25px;
	background: #73AD21;
	padding: 20px;
	width: auto;
	height: 600px; 
}
	input {
		width: 80%;
		height: 50px;
		border-radius: 25px;
		background-color: #ffd47b;
		border: none;
		padding: 12px 20px;
	}
	.cards {
		margin-top: 2em;
	}
	.gallery {
		margin: auto;
	}
	.video {
		width: 100%;
	}
	.fitpage {
		max-width: 100%;
	}	
}

/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
  body {
	  margin-left:50px;
	  margin-right:50px;
    
  }
    #scroller {
	border-radius: 25px;
	background: #73AD21;
	padding: 20px;
	width: auto;
	height: 600px; 
}
	input {
		width: 60%;
		height: 50px;
		border-radius: 25px;
		background-color: #ffd47b;
		border: none;
		padding: 12px 20px;
	}
	.cards {
		margin-top: 2em;
	}
	.gallery {
		margin: auto;
	}
	.video {
		width: 100%;
	}	
	.fitpage {
		max-width: 90%;
	}
}

/* Desktop Styles */
@media only screen and (min-width: 1070px) {
	body {
		max-width: 60%;
	}
	.cards {
		margin-top: 2em;
		display: flex;
	}
	.gallery {
		max-width: 75%; 
		margin: auto;
	}
	.video {
		width:800px;
		height: 450px;
	}
	.fitpage {
		max-width: 60%;
	}
}

.vertical-center {
	margin: 0;
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


