body {
  background-color: hotpink;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: space-between;
  padding-left: 3%;
  padding-right: 10%;
  gap: 20px;
  flex-wrap: nowrap;
}

section {
  box-sizing: border-box;
}

section:first-child {
  flex: 1 1 55%;
}

section.informasjon {
  flex: 1 1 45%;
  padding-top: 6vh;
}

.image-text-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.image-text-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  flex: 1 1 250px;
}

.tekst-bilde {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1 1 250px;
  max-width: 12vh;
  min-width: 200px;
}


@media (max-width: 900px) {
  .container {
    flex-wrap: wrap;
  }

  section.informasjon {
    flex-basis: 100%;
    padding-top: 20px;
  }

  section:first-child {
    flex-basis: 100%;
  }

  .image-text-container {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
  }

  .image-text-container img,
  .tekst-bilde {
    flex: 1 1 45%;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .image-text-container {
    flex-direction: column;
    align-items: center;
  }

  .image-text-container img,
  .tekst-bilde {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

#tbdiv{
  display: flex;
}

.informasjon h2{
  padding: 1.5vh;
}

#stortbilde{
  border: 2px dashed black;
  padding: 30px;
}

.bokbilde-container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.bokbilde{
  width: 230px;
  height: 240px;
  object-fit: cover;
  border: 2px solid black;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}