body {
  font-family: "Inter", sans-serif;
  color: #3e362e;
  margin: 0;
}
.navbar {
  display: flex;
  color: #443742;
  background-color: #f3f3f3;
  align-items: center;
  padding: 30px 40px;
  justify-content: space-between;
}

.navbar img {
  height: 28px;
}

.navbar2 {
  display: flex;
  font-size: 25px;
  color: #443742;
  text-align: center;
  gap: 50px;
  align-items: center;
  font-weight: 300;
}

.navbar2 a {
  text-decoration: wheat;
  color: #6b6b6b;
  font-weight: 400;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  color: #443742;
  font-size: 48px;
  font-weight: 700;
}
h4 {
  color: #443742;
  font-size: 16px;
  font-weight: 700;
}

p {
  color: #443742;
  font-size: 20px;
}
.kontakt-epost {
  color: #443742;
  font-size: 16px;
}
h2 {
  font-size: 24px;
  color: #846c5b;
  font-weight: 600;
}

#folk-container {
  margin-top: auto;
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.folk-box {
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  padding: 10px;
  width: 150px;
  text-align: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 280px;
}

.folk-box img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
}

.secondaryButton {
  background-color: #846c5b;
  color: #edd9a3;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50px;
  width: 100%;
  margin-top: 10px;
}
.secondaryButton:hover {
  background-color: #443742;
}

#popup {
  display: none;
  position: relative;
  inset: 0;

  justify-content: center;
  align-items: center;
}

#popup-content h3,
#popup-content p {
  margin: 5px 0;
}

#popup-message {
  width: 100%;
  height: 60px;
  margin-top: 5px;
  border: 1px solid #aaa;
}

.primaryButton {
  justify-content: center;
  padding: 15px;
  background-color: #846c5b;
  border: none;
  width: 339px;
  height: 58px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: bold;
  color: #edd9a3;
  cursor: pointer;
}
.primaryButton:hover {
  background-color: #443742;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    padding: 15px 20px;
  }

  .navbar img {
    height: 24px;
    margin-bottom: 10px;
  }

  .navbar2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
  }

  .navbar2 a:last-child {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 0;
  }
}
