/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
}

.left_nav{
  float: inline-start;
  display: flex;
}

h1{
  color: #ffffff;
  padding-left: 15px;
  font-size: 25px;
}
  
/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  color: #ffffff;
  text-align: center;
  padding: 20px 22px;
  text-decoration: none;
  font-size: 20px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
  
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #707070;
  color: rgb(173, 234, 245);
}
  
/* Add a color to the active/current link */
.topnav a.active {
  background-color: #141414;
  color: rgb(173, 234, 245);
}

body{
  background-color: #000000;
}

.content_window_item_a{
  padding: 15px 10px;
  background-color: #202020;
  width: 100%;
}

.content_window_item_a
h2, .content_window_item_a p{
  color: rgb(224, 224, 224);
}

.content_window_item_b{
  padding: 15px 10px;
  background-color: #e9d3c1;
  width: 100%;
}

.content_window_item_b
h2, .content_window_item_b p{
  color: rgb(41, 41, 43);
}

.content_wrapper{
  padding: 15px 10px;
}

.content_wrapper a{
  word-wrap: break-word;
}
.content_wrapper h2{
  font-size: 35px;
  padding-left: 10px;
}

.gallery_image_wrapper{
  display: flex;
  width: 100%;
}

.gallery_image{
  align-self: start;
  width: 66%;
  padding: 15px 10px;
  padding-right: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery_image:hover{
  opacity: 80%;
}

.gallery_image_text_wrapper{
  align-self: start;
  width: 100%;
  flex: 1 2 auto;
  display: block;
}

@-moz-document url-prefix() {
  .gallery_image{
    width: 100%;
  }

  .gallery_image_text_wrapper{
    align-self: start;
    width: 100%;
    flex: 1 2 auto;
    display: block;
  }
}

.gallery_image_text_wrapper h2{
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 32px;
  padding: 0px 0px;
}

.gallery_image_text{
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: rgb(36, 36, 63);
  font-size: 24px;
}

/* 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_wrapper * {box-sizing: border-box}
.mySlides1, .mySlides2, .mySlides3, .mySlides4 {display: none}
.modal_content_wrapper img {vertical-align: middle;}

.slide_container {
  margin: auto;
  position: relative;
  display: flex;
  width: 75%;
  max-height: 95%;
  max-width: 95%;
}

.modal_content{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Caption text */
.text {
  background: #000000;
  background-color: #00000077;
  color: #f2f2f2;
  font-size: 30px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  transition: 0.3s ease;
  opacity: 0;
}

/* Number text (1/3 etc) */
.numbertext {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #f2f2f2;
  font-size: 24px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  transition: 0.3s ease;
  opacity: 0;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  transition: 0.3s ease;
  opacity: 20%;
}

.slide_container:hover .prev,
.slide_container:hover .next,
.slide_container:hover .numbertext,
.slide_container:hover .text{
  opacity: 1;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: #ffffff98;
  color: black;
}

/* Add Animation */
.modal_content_wrapper {  
  -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;
}

.fade{
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .6}
  to {opacity: 1}
}

* {
  box-sizing: border-box;
}

.content_container{
  display: flex;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  float:left;
  padding: 5px;
  width: 33%;
}

.column img {
  margin-top: 8px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.column img:hover {
  opacity: .8;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 900px){
  .gallery_image_wrapper{
    display: block;
  }
  .gallery_image{
    width: 100%;
  }
  .text {
    font-size: 22px;
  }
  .numbertext{
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px){
  .left_nav{
    display: none;
  }

  .column{
    width: 100%;
  } 
}
/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 600px){
  .left_nav{
    display: none;
  }
  .text {
    font-size: 14px;
  }
  .numbertext{
    font-size: 12px;
  }
}
