html {
	position: relative;
	min-height: 100%;
    background: black; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(black, silver); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(black, silver); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(black, silver); /* For Firefox 3.6 to 15 */
    background: linear-gradient(black, silver); /* Standard syntax */
    text-align: center;
}

body {
	height: 100%;
    margin: 0 0 100px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-left: 50px;
    margin-right: 50px;
}

body header h1 {
	color: white;
	font-size: 3em;
	margin-top: 1em;
	margin-bottom: 1em;
	text-shadow: #fff 0px 1px 10px;
	-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.3)));
}

body header span {
	border-bottom: gray solid 1px;
}

.my-gallery {
	display: block;
}

@media (max-width: 1200px) {
  .my-gallery {
  -moz-column-count:    4;
  -webkit-column-count: 4;
  column-count:         4;
  }
}
@media (max-width: 1000px) {
  .my-gallery {
  -moz-column-count:    3;
  -webkit-column-count: 3;
  column-count:         3;
  }
}
@media (max-width: 800px) {
  .my-gallery {
  -moz-column-count:    2;
  -webkit-column-count: 2;
  column-count:         2;
  }
}
@media (max-width: 400px) {
  .my-gallery {
  -moz-column-count:    1;
  -webkit-column-count: 1;
  column-count:         1;
  }
}

.my-gallery img {
  /* Just in case there are inline attributes */
  width: 100% !important;
  height: auto !important;
  text-align: center;
}


.my-gallery figure:last-child {
	margin-bottom: 60px;
}

footer {
	background-color: black;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
}


footer .contact-links {
	position: relative;
	text-align: center;
}

footer .contact-links img {
	width: 50px;
	padding-left: 10px;
}

.center {
	text-align: center;
}