body {
  /* 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: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #99D530;
  padding: 75px;
}

#logo {
	margin: 0 auto;
	display: block;
}

#headings,
#UnserName,
#unterlagen,
#kontakt,
#impressum {
	background: rgba(255,255,255,0.75);
	border: solid 1px #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

button,
.button {
	background-color: #00a651;
}