@charset "utf-8";

#photos {
   /* Prevent vertical gaps */
   line-height: 1;
   
   -webkit-column-count: 5;
   -webkit-column-gap:   2px;
   -moz-column-count:    5;
   -moz-column-gap:      0px;
   column-count:         5;
   column-gap:           2px;
}

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 2000px) {
  #photos {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
}
@media (max-width: 500px) {
  #photos {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
}


body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: Arial;
  color: #FFF;
  font-weight: bold;
}
    
#Copyright {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	text-align: center;
	font-weight: bold;
	padding-top: 7%;
	padding-bottom: 2%;
}

#Links {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #FFF;
	font-weight: bold;
	text-align: center;
    padding-top: 5%;
}
    
.header {
  text-align: center;
  padding: 32px;
}
    
a:link {text-decoration: none;

}

