body {
  font-family: "Lato", sans-serif;
  background-color: rgba(42, 42, 42);
}
/*----------------------------side nav--------------------------*/
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #e0e0e0;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 22px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  max-width: 800px;
  margin: 0 auto; 
  transition: margin-left .5s;
  padding: 10px 10px 10px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/*-----search bar-----*/
.search-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

form.example input[type=text] {
  padding: 12px;
    font-size: 15px;
  border: 1px solid grey;
    border-radius: 30px;
  width: 50%;
  background: #f1f1f1;
}

form.example button {
  align-items: center;
  width: 25%;
  padding: 5px;
  background: #a0a0a0;
  color: rgb(61, 61, 61);
  font-size: 20px;
  border: 1px solid grey;
  border-radius: 25px;
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
  background: #363636;
  color: white;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}


/*---------------------banner image-----------------------*/
.banner-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;       /* crop artifacts at edges */
  border: none;
  border-radius: 0;
  background: #2e2e2e;    /* fallback fill color */
}

.banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;     
  border-radius: 0;      
}

/* also draw the visible border on top of the image */
.banner-overlay {
  display: none;
}


/*------------------------------slide pics-----------------------------------------*/
* {box-sizing: border-box}

body {
  font-family: Verdana, sans-serif;
  margin: 0;
}

.mySlides {display: none}

img {vertical-align: middle; border-radius: 0px;} 

/* Slideshow container */
.slideshow-container {
  max-width: 800px;
  position: relative;
  margin: auto;
  padding: 0;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next, .text {font-size: 11px}
}

/*---------------------fonts and texts-----------------------*/
h1 {
  font-family:  "Special Elite", system-ui;
  font-size: 36px;
  text-align: left;
  padding: 10px 20px 10px;
  color: #ffffff; 
}
h2 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  text-align: left;
  padding: 2px 20px 10px;
  color: #b5b5b5; 
}
p {
  font-size: 16px;
  padding: 1px 20px 10px;
  color:#818181
}
a {
  color: #99df58;    
  text-decoration: none;
}
a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
a:visited {
  color: #99df58;     
}
.menu-btn {
  font-size: 30px;
  cursor: pointer;
  color: #ffffff !important; 
}
.menu-btn:hover {
  color: #ffffff; 
}

/* decorative divider */
hr.divider {
  border: none;
  border-top: 2px solid rgba(255,255,255,0.12); /* adjust color/opacity */
  width: 80%;
  margin: 24px auto;
  box-sizing: content-box;
}
footer {
  text-align: center;
  padding: 18px 10px;
  color: #cfcfcf;
  background: transparent;
  font-size: 14px;
}
.site-footer { 
  margin: 0; 
}
