
body {
  background-color: lightblue;
  text-align: center;
  font-family: verdana;
}

.backgroundImage {
  background-image: url("adrparken2");
  
  /* 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: lightblue;
}
	

h1 {
  color: darkblue;
  text-align: center;
}

p {
  font-family: verdana;
  font-size: 20px;
}


* {
	font-family: verdana;
}

ul {
	list-style-type: none;
}

button {
  border: none;
  color: darkblue;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: verdana
  margin: 4px 2px;
  cursor: pointer;
}
