body, html {
  font-family: "europa";
  font-size: 100%;
  word-break: break-word;
}

body.home {
  /* Location of the image */
  background-image: url(img/bg.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: contain;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #fff;
  margin: 0;
}

a, a:hover, a:focus, a:active {
  color: black;
}


a.mail {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.container {
  max-width: 800px;
  margin: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

a.impressum-link {
  position: absolute;
  bottom: 30px;
  height: auto;
  width: 100%;
  text-align: center;
  z-index: 11;
}