

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap');

body {
  background-color: black;
  font-family:'Archivo', sans-serif;
}

h1 {
  display: inline;
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  background-color: white;
  color: dodgerblue;
  margin-right:35%;
  border-style: solid;
  border-color: white;
  letter-spacing: -1px;
  line-heigh: 5px;
  white-space:nowrap;
  padding:0px;
  padding-right: 0px;
  padding-left: 0px;
}

p {
  display: inline;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: white;
  letter-spacing: -1px;
  margin-right: 25%;
}

a:link {
  color: dodgerblue;
}
a:visited {
  color: dodgerblue;
}
a:hover {
  color: dodgerblue;
  text-decoration: underline;  
}
a:active {
  color: dodgerblue;
}

.responsive {
  width: 90%;
  max-width: 800px;
  height: auto;
}



#gallery {
   line-height:0;
   -webkit-column-count:5; /* split it into 5 columns */
   -webkit-column-gap:5px; /* give it a 5px gap between columns */
   -moz-column-count:5;
   -moz-column-gap:5px;
   column-count:5;
   column-gap:5px;
      
}

#gallery img {
   width: 100% !important;
   height: auto !important;
   margin-bottom:5px; /* to match column gap */;
   filter: grayscale(100%);
}

#gallery img:hover {
   filter:none;
}

media (max-width: 1200px) {
   #gallery {
    -moz-column-count:    4;
    -webkit-column-count: 4;
    column-count:         4;
   }
}

media (max-width: 1000px) {
   #gallery {
    -moz-column-count:    3;
    -webkit-column-count: 3;
    column-count:         3;
   }
}

media (max-width: 800px) {
   #gallery {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
   }
}

media (max-width: 400px) {
   #gallery {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
   }
}

#darkbox { width:1280px; height:720px; position:absolute; top:0; left:0; background-color:#333; overflow: hidden; text-align:center;}
.darkboximg { padding:5%; max-width: 1216px; max-height: 684px; }
