body {
  /*height:100%;
  width: 100%;*/
  background-image: url("img/background.jpg");
  background-repeat: no-repeat;
  /*background-size: contain;*/
  background-size: 100% 100%;
  background-color: #cccccc;
  background-attachment: fixed;
  background-position: center; 
}

.content {
  background-color: rgba(255,255,255,0.6);
  border-radius: 10px;
  width: 300px;
  position: absolute;
  top:50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
 -webkit-transform: translate(-50%,-50%);
 transform: translate(-50%,-50%);
 text-align: center;
}

.content h1, .content p {
  font-family: 'Indie Flower', cursive;
}

.content a {
  text-decoration: none;
}

.content a:hover {
  background-color: rgba(255,255,255,0.6);
  padding:2px;
  border-radius: 10px;
}
