/*flydende top knap*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}
* {
  box-sizing: border-box;
}
a{
text-decoration: none;
color: white;
}
a:hover{
color: orange;
} /*Slut med den knap */


img {
width:100%;
padding-top: 8px;
}
.menu {
  float:left;
  width:20%;
  text-align:center;
}
.menu a {
  border-style: groove;
  border-color: lightgrey;
  border-width:0px;
  padding:8px;
  margin-top:7px;
  display:block;
  width:100%;
  color:white;
  background-color: rgba(255,0,0,0.5);
}
.menu a:hover{
color: orange;
}
.main {
	
  float:left;
  width:60%;
  padding:0 20px;
  color: white;
  text-align:center;
  background-color: rgba(0,0,0,0.2);
}
.right {
  float:left;
  width:20%;
  padding:15px;
  margin-top:7px;
  text-align:center;
  color:white;

}

@media only screen and (max-width:600px) {
  /* For mobile phones: */
  .menu, .main, .right {
    width:100%;
  }
}
.headfoot{
text-align:center;
padding:4px;
margin-top:2px;
}