@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
}

.topnav {
  background-color: #6e4c40;
  overflow: hidden;
}

.topnav a { /* links inde i navigation baren */
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 19px;
}

.topnav a.active { /* class for at fremhæve den aktuelle side */
  background-color: #71b3b6;
  color: white;
}

.topnav a:hover { /* farve på link-hover */
  background-color: #f2cb9e;
  color: black;
}

.topnav .icon { /* Skjuler burgeren */
  display: none;
}

/* Media Query for menuen*/
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {
    display: none; /* skjuler desktop.nav */
  }
  .topnav a.icon { /*viser burgermenuen */
    float: right;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
/* Main start */
body {
  background-image: url("../img/chinni_ulv.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  height: 150vh;
  overflow: scroll;
  margin: 0;
}

p {
  margin-bottom: 10px; /* 10px blank linje */
}

/* Box start inkl. H1 og container */
.box {
  /* background: #f2f2f2; */
  margin: 20px 0;
  width: 100%;
}

.box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.index_h1 {
  font-size: 15vw;
  text-align: center;
  margin-bottom: 5%;
  font-family: cursive;
  color: #e048c9;
}

.container {
  max-width: 55%;
  background-color: #f2cb9e;
  padding: 3%;
  border-radius: 8px;
  box-shadow: 0 0 10px 2px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 10px auto;
}

.btn-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px;
  margin-top: 20px;
}

.btn {
  background-color: #6e4c40;
  border-radius: 28px;
  padding: 5px 25px;
  color: white;
  size: 39px;
  font-size: x-large;
  font-weight: 900;
}

.btn:hover {
  background-color: #5f9ea0;
  color: #000;
  overflow: hidden;
  font-weight: bold;
}

#icon {
  color: white;
  font-family: awsome, times new roman;
}

/* Box end */
/* Main end */
.containervejledning {
  margin: 25% auto;
  width: 55%;
  max-width: 44%;
  background-color: #f2cb9e;
  padding: 3%;
  border-radius: 8px;
  box-shadow: 0 0 10px 2px;
  height: -moz-fit-content;
  height: fit-content;
}

.box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
}

footer .copyright {
  display: flex;
  justify-content: center;
  color: #fbfbfc;
  background-color: #5f9ea0;
  font-size: 100%;
  -webkit-text-size-adjust: 25%;
  -moz-text-size-adjust: 25%;
  text-size-adjust: 25%;
  padding: 1%;
}/*# sourceMappingURL=style.css.map */