@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500&display=swap");
*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  color: black;
}
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.7;
  padding: 30px;
}

/*navigationsbar i index*/
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
  float: right;
}

li a {
  display: block;
  padding: 8px;
  color: #71a850;
  text-decoration: none;
  font-size: 20px;
}

li a:hover {
  transform: scale(1.2);
  text-decoration: underline;
}

/* kode til logo*/
.logo-box {
  position: absolute; /*så man eks. kan indsætte noget ind på et billede, kræver at parent er relative*/
  top: 1em;
  left: 2em;
}

.logo {
  width: 6em;
  opacity: 0.7;
}

/*Kode til galleri*/
h1 {
  position: relative;
  top: 1.1em;
  left: 20px;
  color: #71a850;
  font-size: 30px;
}

/*Kode til selve galleri*/

div.gallery img {
  width: 100%;
  height: auto;
  margin-top: 50px;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 49.99999%;
  height: 99.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*Kode til footer*/
.footer-distributed .footer-left, /*dette gør at man specifikt vælger footer-left inde i footer-distributed*/
.footer-distributed {
  text-align: center;
}

.footer-distributed {
  box-shadow: 0 0 0 0;
  width: 100%;
  text-align: left;
  font-weight: 300;
  padding: 50px 50px;
}
