body, html {
  height: 100%;
  margin: 0;
  color: #FFF;
}
a {
  color: #FFF;
}
.bg {
  /* The image used */
  background-image: url("bg.jpg");

  /* Full height */
  height: 100%; 

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.center-div {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 299px;
  height: 200px;
  text-align: center;
}
.center-div img {
  width: 100%;
  margin: 0 auto;
  opacity: 0.7;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 200;
  letter-spacing: 7px;
  font-size: 22px;
  margin: 5px 0;
  margin-right: -6px;
  padding: 0;
}
.h {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 4px;
  margin: 30px 0;
}
a {
  color: rgba(255,255,255,0.6);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 200;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 4.5px;
  transition: color 0.8s ease;
}
a:hover {
  color: rgba(255,255,255,0.9);
  transition: color 0.8s ease;
}