/* HTML5 display-role reset for older browswes */
	article, aside, details, figcaption, figure,
	footer, header, hgroup, menu, section {
	 display: block;
	}
	
/*====================================
	Main Styles
====================================*/

/* Body style */

	body {
		background-color: #504A4B;
	 	box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
	 	color: #cccccc;
	 	font-family: Arial, Arial Nova, sans-serif;
	 	margin: 0 auto;
	 	max-width: 1920px;
	 	padding: 2em 2em 4em;
	}

/* Text style */

	h1 {
		font-size: 3vw;
		text-align: center;
		color: #EDC9AF;
		padding: 0 0 14px 0;
	}

	h2 {
		font-size: 2vw;
		text-align: center;
		color: #EDC9AF;
		padding: 14px;
	}

	h3 {
		font-size: 2vw;
		text-align: center;
		color: #EDC9AF;
		padding: 14px;
	}

	h4 {
		font-size: 2vw;
		text-align: center;
		color: EDC9AF;
		padding: 5px;
	}

	.headerlogo {
		float: left;
		margin-right: 10px;
	}

	.headerlogo > img { 
		height: 60px;
		width: 60px;
	}
	
	ul {
		font-size: 1vw;
		list-style-type: square;
		list-style-position: inside;
		text-align: left;
		color: EDC9AF;
		padding: 20px 0 0 520px;
	}

	b {
		color: #FBB117;
	}

	#hp {
		font-size: 3vw;
		text-align: center;
		color: #E5E4E2;
		padding: 0 0 14px 0;
	}

	#ap {
		font-size: 1.25vw;
		text-align: center;
		font-style: italic;
		border-width: 500px;
		color: #E5E4E2;
		padding: 0 0 14px 0

	}

	p {
		font-size: 1.25vw;
		text-align: center;
		font-style: italic;
		border-width: 500px;
		color: #EDC5AF;
		padding: 0 0 14px 0;
	}

	footer {
		font-size: 1vw;
		text-align: center;
		color: #87F717;
		padding: 20px;
	}

/* Form styles */

	label {
		width: 4em;
		float: left;
		text-align: right;
		margin-right: 0.5em;
		display: block
	}

/* Input fields */

	.submit input {
		margin-left: 1em;
	} 

	input {
		color: #000;
		background: #FEE3AD;
		border: 1px solid #6698FF;
	}

	.submit input {
		color: #000;
		background: #FFA20F;
		border: 2px outset #D7B9C9;
	} 

/* Box around input fields */

	fieldset {
		border: 1px solid #6698FF;
		width: 20em;
	}

	div {
		text-align: center;
	}

	form {
		display: inline-block;
	}

	legend {
		color: #fff;
		background: #FFA20C;
		border: 1px solid #6698FF;
		padding: 2px 6px;
	}

/* Video (iFrame) */

  	iframe {
  		margin: 0 auto;
  		display: block;
  		padding: 10px 0 0 0;
  		filter: drop-shadow(0 0 10px #000000);
  	}

/* Navbar container */

	.navbar {
		overflow: hidden;
		background-color: #6698FF;
		font-family: Arial;
	}

	.navbar a {
		float: right;
		font-size: 16px;
		color: #FFFFFF;
		text-align: center;
		padding: 17px 16px;
		text-decoration: none;
	}

	.dropdown {
		float: right;
		overflow: hidden;
	}

	.dropdown .dropbtn {
		font-size: 16px;
		border: none;
		outline: none;
		color: #FFFFFF;
		padding: 17px 16px;
		background-color: #6698FF;
		font-family: inherit;
		margin: 0;
	}

	.navbar a:hover, .dropdown:hover .dropbtn {
		background-color: 437C17;
	}

	.dropdown-content {
		display: none;
		position: absolute;
		background-color: #966F33;
		min-width: 160px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0,2);
		z-index: 1;
	}

	.dropdown-content a {
		float: none;
		color: 000000;
		padding: 12px 16px;
		text-decoration: none;
		display: block;
		text-align: left;
	}

	.dropdown-content a:hover {
		background-color: #DDD
	}

	.dropdown:hover .dropdown-content {
		display: block;
	}

/* Image containers */

	.column {
 		float: left;
  		width: 20%;
  		padding: 25px;
	}

	.row::after {
  		content: "";
  		display: table;
  		clear: both;
	}

	.container {
		text-align: center;
		margin: 25px;

	}

/* Modal model (Bring pics to a larger pic) */

	#myImg {
  		border-radius: 5px;
  		cursor: pointer;
  		transition: 0.3s;
	}

	#myImg:hover {
		opacity: 0.7;
		}

	.modal {
  		display: none;
 		position: fixed;
  		z-index: 1;
 		padding-top: 100px;
  		left: 0;
  		top: 0;
  		width: 100%;
 		height: 100%;
  		overflow: auto;
  		background-color: rgb(0,0,0);
  		background-color: rgba(0,0,0,0.9);
	}

	.modal-content {
  		margin: auto;
  		display: block;
 		width: 80%;
 		max-width: 700px;
	}

	#caption {
  		margin: auto;
  		display: block;
  		width: 80%;
  		max-width: 700px;
  		text-align: center;
  		color: #CCC;
  		padding: 10px 0;
  		height: 150px;
	}

	.modal-content, #caption {  
  		-webkit-animation-name: zoom;
  		-webkit-animation-duration: 0.6s;
  		animation-name: zoom;
 		animation-duration: 0.6s;
	}

	@-webkit-keyframes zoom {
  		from {-webkit-transform: scale(0)} 
	  	to {-webkit-transform: scale(1)}
	}

	@keyframes zoom {
  		from {transform: scale(0.1)} 
  		to {transform: scale(1)}
	}

	.close {
 		position: absolute;
  		top: 15px;
  		right: 35px;
 		color: #F1F1F1;
  		font-size: 40px;
  		font-weight: bold;
  		transition: 0.3s;
	}

	.close:hover, .close:focus {
  		color: #BBB;
  		text-decoration: none;
  		cursor: pointer;
	}

    .img2 {
        border: 1px solid #DDD;
        border-radius: 4px;
        padding: 5px;
        width: 150px;
    }
        
    .img2:hover {
        box-shadow: 0 0 2px 1px rgba(0,140, 186, 0.5);
    }  