body, html {
  height: 100%;
}

* {
  box-sizing: border-box;
  font-family: verdana, sans-serif;
  color: rgb(0,0,0)
}

img.forsidebilde {
  /*max-height: 100px;*/
  max-height: 100px;
}

a, a.visited {
	color: rgb(50,50,50);
}
a:hover, a:active {
	color: rgb(0,0,0);
}


.bg-image {
  /* The image used */
  background-image: url("bilder/bil.jpg");

  /* Add the blur effect */
  filter: blur(5px);
  -webkit-filter: blur(5px);

  /* Full height */
  height: 97%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
  background-color: rgb(255,255,255); /* Fallback color */
  background-color: rgba(255,255,255, 0.85); /* Black w/opacity/see-through */
  color: rgb(0,0,0);
  font-weight: none;
  border: 0px solid #f1f1f1;
  border-radius: 15px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 75%;
  padding: 20px;
  text-align: center;
}