@charset "utf-8";
/* CSS Document */

/* Add a black background color to the top navigation */
.topnav {
  background-color: darkolivegreen;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: wheat;
  text-align: center;
  padding: 14px 16px;
  text-decoration: underline;
  font-size: 20px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: gray;
  color: floralwhite;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: greenyellow;
  color: white;
}

footer {
  background-color: darkolivegreen; /* Dark background color */
  color: wheat; /* White text color */
  padding: 10px; /* Spacing inside the footer */
  text-align: match-parent; /* Center-align text content */
  font-family: Constantia, 'Lucida Bright', 'DejaVu Serif', Georgia, 'serif'Times, "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"; /* Font style */
  font-size: 14px; /* Font size */
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

body {
  background: #C6E7C6 url("backgroundimage.jpg") no-repeat fixed center;
    color:white;
}
.imagestyle1 {
  border-radius: 50%;
}

.imagestyle2 {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 500px;
}

.imagestyle2:hover {
  box-shadow: 0 0 20px 19px rgba(0, 140, 186, 0.5);
}

.imagestyle3 {
  border-radius: 100px;
}

.header1 {
  padding: 30px;
  text-align: center;
  background: #2F5C38;
  color: white;
  font-size: 30px;
}

.p1 {
  font-family: Segoe, 'Segoe UI', 'DejaVu Sans', 'Trebuchet MS', Verdana, 'sans-serif'cursive, sans-serif;
    font-size: 20px;
}

.p2 {
  font-family: "Lucida Console", "Courier New", monospace;
    font-size: 26px;
    color: floralwhite;
}

header {
    font-family: Cambria, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', 'serif'Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
    letter-spacing: 8px;
    text-shadow: 4px 4px gray;
}
* {box-sizing: border-box;}

.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 100px;
  height: 100px;
}
* {box-sizing: border-box;}

.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 100px;
  height: 100px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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);
}

/* 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: 8px 12px;
  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 {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}