body {
	background: #000;
	font-family: sans-serif;
	margin: 0;
	height: 100%;
	}
.Container {
	width: 100%;
	}
.logo {
    position: fixed;
    margin-left: 20px;
    margin-right: auto;
	z-index: 1000;
}
.footer {
  background-color: #0f0f0f;
  color: #fff;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 47px;
  z-index: 1000;
  -webkit-box-shadow: 0px -1px 16px 0px rgba(0, 0, 0, 1);
  -moz-box-shadow:    0px -1px 16px 0px rgba(0, 0, 0, 1);
   box-shadow:         0px -1px 16px 0px rgba(0, 0, 0, 1);
   
}
p {
	font-family: 'Roboto', sans-serif;
	font-size: 100px;
   }
h1 {
	font-family: 'Roboto', sans-serif;
	color: #efefef;
	font-size: 15px;
	font-weight: 100;
    padding-top: 2px;
    text-align:center;
	}
.Gallery {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	line-height: 0;
}
.Gallery-item {
	display: inline-block;
	width: 20%;
}
figure {
	margin: 0;
	position: relative;
}
figure img {
	width: 100%;
	height: auto;
}
figcaption {
  background: rgba(0, 0, 0, .5);
  position: absolute;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  bottom: 0;
  color: white;
  opacity: 0;
  height: 0;
  line-height: 1.3;
  transition: all .5s;
  }
figcaption p{
  text-align: center;
  padding: 0 30px;
  width: 100%;
  }
figure:hover figcaption,
figure:focus figcaption {
  opacity: 1;
  height: 100%;
  cursor: pointer;
   }
figure:focus {
   outline: none;
}
a:link {
    color: #FFFFFF;
	text-decoration:none;
}

/* visited link */
a:visited {
    color: #FFFFFF;
}

/* mouse over link */
a:hover {
    color: #b7cf00;
}

/* selected link */
a:active {
    color: #b7cf00;
}




@media screen and (max-width:960px) {
  .Gallery-item {
    width: 33.3333%;
  }
}

@media screen and (max-width:768px) {
  .Gallery-item {
    width: 50%;
  }
}


@media screen and (max-width:480px) {
  .Gallery-item {
    width: 100%;
  }
}