

#photos {
  /* Prevent vertical gaps */
  line-height: 0;
   
  -webkit-column-count: 4;
  -webkit-column-gap:   10px;
  -moz-column-count:    4;
  -moz-column-gap:      10px;
  column-count:         4;
  column-gap:           10px; 

}

#photos img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  border-style:         solid; 
  border-color: 		rgb(170, 201, 224);

}


@media (max-width: 1300px) {
  #photos {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
}
@media (max-width: 1000px) {
  #photos {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
}
@media (max-width: 800px) {
  #photos {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
  }
}

font-family: 'Glegoo', serif;
font-family: 'Pacifico', cursive;
font-family: 'Ubuntu', sans-serif;

#footer img {
   margin-top: 10px;
   margin-right: 5px;
   }
#footer {
	position: fixed;
	background-image: url('../images/background/footer.png');
	bottom: 0;
	padding:10px;
	font-family:  'Glegoo', serif;
	font: 18px;
	font-weight: bold;
	margin: 5px;
	text-align: center;

	}
