body{background-color:green;
margin:0px;
font-family: "Montserrat", sans-serif;}

.container{background-color: white;
    border: solid 2px black;
    margin: 0 10 0 10;
    text-align:justify;
    background-color:white;
    border:solid black 2px;
    padding:10px;
    box-shadow: 0px 4px 8px 0px #000000}

header{
    font-family: impact, times new roman, sans-serif;
    font-size:50px;
    padding:10px; 
    color:gold;
    text-decoration:underline;
    text-align:left;
}
nav{
            margin: 0;
            padding: 0px;
            background-color: #106120;
    border: solid 1px black;
        }
nav ul{
            list-style-type: none;
            overflow: hidden;
            padding:0;
            margin:0;
            }
nav li{
            float: left;
        }
nav li a, .dropbtn{
            display: inline-block;
            color: yellow;
            text-align: center;
            text-decoration: none;
            padding:10px;
            margin:0px;
        }
nav li a:hover, .dropdown:hover.dropbtn{
            background-color: #032606;
        }

th.hover:hover{
            background-color: #106120;
            color: yellow;
}

li.dropdown{display: inline-block}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: yellow;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #032606}

.dropdown:hover .dropdown-content {
    display: block;}

img.photo{
    border: solid 2px black;
    border-radius: 25px;
    margin: 0px;}

button{
    background-color: #032606;
    color: yellow;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow:0px 4px 8px 0px #000000, 0px 6px 20px 0px #000000;
    cursor:pointer;}

.introbox{background-color: whitesmoke;
    max-width: 100%;
    margin: 10px;
    padding: 15px;
    border: solid 2px black;
    overflow: auto;
    box-shadow: 10px 5px 5px black;
    position:relative;
    text-align: center;
    }

.new{overflow:auto;
    overflow-x: hidden;
    border-radius:25px;
    background-color:white;
    border:solid 2px black;
    margin: 15;
    box-shadow:0px 0px 20px 5px black;}

.grad{
  background: green; /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,1)); /*Safari 5.1-6*/
  background: -o-linear-gradient(bottom,rgba(0,0,0,0),rgba(0,0,0,1)); /*Opera 11.1-12*/
  background: -moz-linear-gradient(bottom,rgba(0,0,0,0),rgba(0,0,0,1)); /*Fx 3.6-15*/
  background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,1)); /*Standard*/
}

.bgrd{background-image: url(images/Backgrounds/3.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:left; 
    overflow:auto;}

.myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.myImg: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 */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.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: 700px){
    .modal-content {
        width: 100%;
    }
    
