body {
  font-family: 'Arial', sans-serif;
  background-color: #F2F4F6;
  margin: 0;
  line-height: 1.6;
}

h1, h2,  p {
  color: #333;
  text-align: center;
}
h3{
  color: #ffffff;
}
.navbar {
  width: 100%;
  padding: 20px;
  text-align: center;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar ul {
  list-style-type: none;
  background: transparent;
}

.navbar ul li {
  display: inline;
  margin: 0 15px;
}

.navbar ul li a {
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.navbar.sticky {
  background-color: #6e0457;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.creative-header {
  position: relative;
  height: 300px;
  background: linear-gradient(to bottom, rgba(110, 164, 191, 0.8), rgba(228, 166, 195, 0.8)), url('bilde.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.creative-header h1 {
  font-size: 3rem;
  color: #6e0457;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.creative-header p {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
}

.historier {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.historie {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%; /* Opprinnelig størrelse på boksene */
  max-width: 300px;
  margin-left: 15px;
  margin-right: 15px;
}

.historie h2 {
  color: #1e749f;
  margin-top: 10px;
}

.historie p {
  font-size: 1rem;
  font-weight: 400;
}

footer {
  background-color: #6e0457;
  color: #f3d5e6;
  text-align: center;
  padding: 20px;
}

footer h1 {
  font-size: 40px;
  color: rgb(149, 195, 236);
}

footer p {
  color: #f3d5e6;
}
#ig {
  background: url("ig-logo.png");

  width: 150px;
  height: 150px;

  background-size: cover;
  background-position: center;

  transition: 0.3s;

  margin: auto;
  margin-bottom: 30px;
}

#ig:hover {
  background: url("ig-logo-farget.png");

  width: 150px;
  height: 150px;

  background-size: cover;
  background-position: center;

  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar ul li {
      display: block;
      margin: 10px 0;
  }

  .navbar ul li a {
      font-size: 1.2rem;
  }

  .creative-header h1 {
      font-size: 2rem;
  }

  .creative-header p {
      font-size: 1rem;
  }

  .historier {
      flex-direction: column;
      align-items: center;
  }

  .historie {
      width: 80%; /* Boksene blir større på mindre skjermer */
  }

  .historie h2 {
      font-size: 1.2rem;
  }

  .historie p {
      font-size: 0.9rem;
  }

  footer h1 {
      font-size: 30px;
  }

  footer p {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .navbar ul li {
      margin: 5px 0;
  }

  .creative-header h1 {
      font-size: 1.5rem;
  }

  .creative-header p {
      font-size: 0.9rem;
  }

  .historie h2 {
      font-size: 1rem;
  }

  .historie p {
      font-size: 0.8rem;
  }

  footer h1 {
      font-size: 24px;
  }

  footer p {
      font-size: 0.8rem;
  }
}
