/* For mobile phones: */
[class*="col-"] {
  width: 90%;
}

@media only screen and (min-width: 1000px) {
  /* For desktop: 768px*/
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

* {
  box-sizing: border-box;
}

body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  margin:0px;
  margin-bottom:30px;
}

H1 {
  color: white;
  font-size:50px;
  font-weight:bold;
}

.NavBar {
  background-color: #D71E25;
  width:100%;
  height:120px;
  box-shadow: 2px 2px 8px #9E0A1F;
  padding:15px;
  margin-bottom:30px;
}
.SiteTitle {
  text-shadow: 2px 2px 8px #9E0A1F;
  font-size:60px;
  font-weight: bold;
  color:white;
}
a.Meny:link, a.Meny:visited {
  background-color: #D71E25;
  color: white;
  font-weight:bold;
  padding: 16px 25px;
  height:50px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius:10px;
  border:2px solid  white;
  box-shadow: 2px 2px 8px #9E0A1F;
}

a.Meny:hover, a.Meny:active {
  background-color: #9E0A1F;
  color:white;

}

.MainDiv {
  background-color: white;
  box-shadow: 2px 2px 8px #9E0A1F;
  border-radius: 10px;
}

.HeadlineDiv {
  background-color:#D71E25;
  color: white;
  width: 100%;
  height:44px;
  font-size: 24px;
  font-weight:bold;
  border-radius: 10px 10px 0px 0px;
  padding:10px;
  text-align:left;
  text-shadow: 2px 2px 8px #9E0A1F;
    
}

.ContentDiv {
  color: black;
  width: 100%;
  font-size: 14px;
  padding:25px;
}

.Center {
  margin: auto;
}

.InputText {
  width:100%;
  height:40px;
  border-radius:4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size:24px;
}
.InputTextSmall {
  width:100%;
  height:25px;
  border-radius:4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
}
.InputSubmit {
  width:100%;
  height:40px;
  border-radius:4px;
  background-color:#D71E25;
  color:white;
  font-family: Arial, Helvetica, sans-serif;
  font-size:24px;
  cursor:pointer;
}
.InputSubmitSmall {
  width:100%;
  height:25px;
  border-radius:4px;
  background-color:#D71E25;
  color:white;
  font-family: Arial, Helvetica, sans-serif;
  font-size:16px;
  cursor:pointer;
}