@charset "UTF-8";
/* Valeta Wensloffs's CSS Document.
NOTE: You can replace my name with your name - this part up here is a CSS comment and is not telling the web browser to change the appearance of your html page(s). You could also put other things here, like the colors you picked for a quick reference. I like to do that so I can easily copy and paste the hex numbers when I need them. For Example:
Dark Red: #862e19
Cyan: #45b5dd
Light Gray: #cccccc
Dark Gray: #666666
White: #ffffff
*/

a:link {
	color:#464646;
	text-decoration:underline;
	}

a:hover {
	color:#00D05F;
	text-decoration:underline;
}

/* the html element below is the "background" of your page */
html {
	background-color:#453130;
}


body {
	width: 800px;
	margin: 0em auto; /* this + a defined width, centers the body content */
	padding: 20px;
	background-color: #eaeaea;
}

@media only screen and (max-width: 400px) {
	body {
		width: 360px;
		margin: 0em auto; /* this + a defined width, centers the body content */
		padding: 20px;
		background-color: #eaeaea;
	}
}

#nav {
	list-style-type: none;
	background-color: #edb793;
	width: 775px;
	padding: 5px;
	border-color: #565656;
  border-style: solid;
  border-width: 5px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

@media only screen and (max-width: 400px) {
#nav {
	list-style-type: none;
	background-color: #edb793;
	width: 300px;
	padding: 10px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}
}

#nav a {
	color: #171813;
  font-family: sylfaen, sans-serif;
	font-weight: bold;
	text-decoration:none;
	padding: 20px;

}

#nav li{
display:inline;
}

#nav a:hover {
	text-decoration:underline;
}


h1 {
	color: #171813;
  font-family: sylfaen, sans-serif;
	font-weight: bold;
}

h2 {
	color: #171813;
	font-family: sylfaen, sans-serif;
	font-weight: bold;
}

h3 {
	color: #171813;
	font-family: sylfaen, sans-serif;
	font-weight: bold;
}


img {
	margin: 0 0 10px 10px;
}

@media only screen and (max-width: 400px) {
	img {
		max-width: 300px;
		margin: 0 0 10px 10px;
	}
}

iframe {
	width:700px;
	height:1000px;

}

@media only screen and (max-width: 400px) {
	iframe {
		width:300px;
		height:540px;
	}
}
/* The code below here alters your links */
a {
  font-weight: bold;
}


a:hover {
	text-decoration: none;
	color: #006;
}

p {
	padding-right: 240px;
	color: #4a4e11;
	font-family: sylfaen, sans-serif;
	font-size: 18px;
}

div {
	font-weight: bold;
}
/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

#myImg1 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg1:hover {opacity: 0.7;}

#myImg2 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg2:hover {opacity: 0.7;}

#myImg3 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg3:hover {opacity: 0.7;}

#myImg4 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg4:hover {opacity: 0.7;}

#myImg5 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg5:hover {opacity: 0.7;}

#myImg6 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg6:hover {opacity: 0.7;}

#myImg7 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg7:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.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)}
    to {transform:scale(1)}
}

/* The Close Button */
.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;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 400px){
    .modal-content {
        width: 100%;
    }
}
