/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  color: black;
  font-family: Verdana;
  padding: 20px;
  margin: auto;
}

.banner img{
  display: block;
  width: 70%;
  max-width: 1100px; /*max height?*/
  text-align: center;
  padding: 20px;
  margin: 10px auto 5px auto;
  position: relative;
}

.content {
  width: 70%;
  max-width: 1100px;
  background-color: white;
  padding: 20px;
  margin: 20px auto 20px auto;
}

.menu {
  display: flex;
  text-align: center;
  justify-content: space-between;
  width: 70%;
  max-width: 1100px;
  max-height: 30px;
  background-color: white;
  padding: 20px;
  margin: 20px auto 20px auto;
}

li {
  list-style: none;
  display: inline-block;
}

h1, h2, p {
  font-family: fantasy, Sans-Serif;
}

.gallery-forside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  max-width: 1500px;
  margin: -20px auto auto auto;
  padding: 20px 10px;
}

.gallery-forside img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

footer {
  text-align: center;
}

/* section for gallery. if things go wrong move this to another document */

.gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 10px;
}

.gallery img {
  width: 100%;
  max-width: 350px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery::after {
  content: "";
  width: 350px;
}

* {
  box-sizing: content-box;
}


.figure {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
}



/* Hvis jeg har brug for at ændre farverne på links, så er dette måden man gør det på:
a {
  color: black;
}

a:visited {
  color: black;
}

a:hover {
  color: brown;
}

a:active {
  color: brown;
}
*/
