@charset "utf-8";
/* CSS Document */

			* {box-sizing: border-box}
			.mySlides {display: none}

		
		*{
			margin:0;
			padding:0;
		}
		/*creates a middle column for logo, navigation, and content */
		#contentCenter{
			background:#ffffff;
			width: 70%;
			float:left;
		}
		
		/*empty column for left of page*/
		#pixelLeft{
			background:#D8C6B8;
			width: 15%;
			height: auto;
			float:left;
		}

		/*empty column for right of page*/
		#pixelRight{
			background:#D8C6B8;
			width: 15%;
			height: auto;
			float:right;
		}
		/*height of columns*/
		#contentCenter,#pixelLeft,#pixelRight{
			height: 1300px;
		}
		/*body styling for text*/
		body {
			font-family: "Goudy Old Style", serif;
			font-style: normal;
			font-weight: 400;
			font-size: 16px;
			font-size: 1.5vw;
			color: #0B9446;

		}
		
		/*styling for images*/
		img {
			display:block;
			max-width: 100%;
			height: auto;
			vertical-align: middle;

		}
		/*styling for list*/
		ul {
			list-style: none;
			margin: 0;
			padding: 0;
		}


		/* Create two columns/boxes that floats next to each other */
		/*used in content pages*/
		.aboutimg {
			float: right;
			width: 60%;
			height: auto;
			background: #D8C6B8;
			padding: 20px;
		}

		/*styles the text on the about page*/
		.abouttxt {
			float: left;
			padding: 20px;
			width: 40%;
			background-color: #ffffff;
			height: 300px; /* only for demonstration, should be removed */
		}

		/* Clear floats after the columns */
		section:after {
			content: "";
			display: table;
			clear: both;
		}

		/* Style the footer */
		footer {
			background-color: #543136;
			padding: 16px;
			text-align: center;
			color: white;
		}


			
		/* Style the header */
		.header {
			background-color: #f1f1f1;
			padding: 20px;
			align-items: center;
		}

			
			/*used for centering logo. perhaps other things*/
		.center {
			display: block;
			margin-left: auto;
			margin-right: auto;
			width: 50%;
		}
			
		.left {
			display: block;
			margin-right: auto;
			padding: 10px;
		}
			
		/* The navbar container */
		.topnav {
			overflow: hidden;
			background-color: #543136; /*wine color*/
			list-style:none;
			margin:0;
			padding:0;
			text-align:center;
		}

		.topnav li{
			display:inline;
		}

		/* Navbar links */
		.topnav a {
			display:inline-block;
			padding:10px
		}


		/* Links - change color on hover */
		.topnav a:hover {
			background-color: #7b573e; /* cafe color */
			color: black;
		}
			
		/* Slideshow container */
		.slideshow-container {
			max-width: 100%;
			height: auto;
			position: relative;
			margin: auto;
			padding: 16px;
		}

		/* Slideshow Next & previous buttons */
		.prev, .next {
			cursor: pointer;
			position: absolute;
			top: 50%;
			width: auto;
			padding: 16px;
			margin-top: -22px;
			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);
		}

		/*styling the company logo*/
		.logo {	
			max-width: 80%;
			height: auto;
			display: block;
			margin-left: auto;
			margin-right: auto;
			vertical-align: middle;
		}

		/*styling the menu img*/
		.menu {
			padding: 14px;
			display:block;
			max-width: 100%;
			height: auto;
			vertical-align: middle;
		}

		/* 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: 16px 24px;
			position: absolute;
			top: 0;
		}

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

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

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

		/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
		@media (max-width: 600px) {
			nav, article {
				width: 100%;
				height: auto;
			}
		}

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

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

		/* On smaller screens, decrease text size */
		@media only screen and (max-width: 300px) {
		.prev, .next,.text {font-size: 11px}
		}

		@media screen and (max-width:600px) {
			.columncenter, .columnright, .columnleft {
				width: 100%;
			}
		}

			
	

