@charset "utf-8";
/* CSS Document */

/* Add a black background color to the top navigation */
.topnav {
  background-color: #047F44;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #000000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 19px;
    font-weight: bold
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #aed768;
  color: Light Green;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

footer {
  background-color: #fff; /* Dark background color */
  color: #000000; /* White text color */
  padding: 10px; /* Spacing inside the footer */
  text-align: center; /* Center-align text content */
  font-family: Impact, Haettenschweiler,sans-serif; /* Font style */
  font-size: 24px; /* Font size */
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

body {
 background-image: url( "unnamed.jpg");
 background-size: 100%;
}

img {
  border: 10px solid #039F10;
  border-radius: 4px;
  padding: 5px;
}



.header {
  padding: 60px;
  text-align: center;
  background: #A0BC9C;
  color: darkgreen;
font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"sans-serif; /* Font style */
  font-size: 40px; 
    font-style:italic
}

p {
  background-color: whitesmoke; 
  padding: 10px; 
    font-style:italic
}

ul {
  background-color: whitesmoke; 
  padding: 10px; 
}

h3 {
  background-color: whitesmoke; 
  padding: 10px; 
}

ol {
  background-color: whitesmoke; 
  padding: 10px; 
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

.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 {
  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 {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  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;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 10px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8;
  cursor: pointer;
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}