body {
    background-color: pink;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
  }
  
  header {
    text-align: left;
    font-size: 1rem;
    letter-spacing: 0.3rem;
    padding: 1.5rem 0;
  }
  
 
  .container_1 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-left: 3cm;
  }
  

  .image-box {
    border: 5px dotted black;
    padding: 10px;
  }
  
  .image-box img {
    width: 300px;
    display: block;
  }
  
 
  .text-box {
    max-width: 300px;
  }
  

  .hoyre-info {
    margin-right: 3cm;
    flex: 1;
  }
  
  .hoyre-info h2 {
    margin-bottom: 10px;
  }
  
  .hoyre-info table {
    width: 100%;
    border-collapse: collapse;
    margin-right: 10cm;
  }
  
  .hoyre-info th,
  .hoyre-info td {
    border: 1px solid black;
    padding: 5px;
    text-align: left;
  }
  
  .under-tabell {
    margin-top: 15px;
    font-weight: bold;
  }
  

  .nye-boker {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .nye-boker img {
    width: 80px;
    height: auto;
    border: none;
  }
  

  main.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-right: 3cm;
  }
  
  
  .venstre-info {
    margin-left: calc(3cm + 10px);
    margin-top: 20px;
  }
  
  .venstre-info ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .kilder a {
    color: black;
    text-decoration: none;
  }
  
  
  @media (max-width: 900px) {
    main.container {
      flex-direction: column;
      align-items: center;
    }
  
    .container_1 {
      flex-direction: column;
      align-items: center;
      margin-left: 0;
    }
  
    .text-box {
      max-width: 90%;
      text-align: center;
    }
    .hoyre-info table {
        width: 100%;
        border-collapse: collapse;
        background-color: transparent; 
      }
      
  
    .nye-boker {
      justify-content: center;
      gap: 10px;
    }
  }
  