@media screen and (max-width: 576px){
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

  .container {
      position: relative;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

  .header {
      display: flex;
      position: relative;
      width: 100%;
      flex-direction: column;
      align-items: center;
    }

  .header-text {
      text-decoration: none;
      padding: 0;
      color: rgb(65, 65, 65);
      margin-left: 0;
      font-size: 16px;
      text-align: center;
    }

  .image-container {
      height: 40vh;
      overflow: hidden;
      background-repeat: no-repeat;
      background-size: cover;
    }



  .image-text {
      position: absolute;
      top: 35%;
      left: 17%;
      transform: translate(-50%, -50%);
      color: rgb(75, 75, 75);
      font-size: 20px;
      font-weight: bold;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
      text-align: center;
    }

  .side {
      padding: 20px;
      background-color: #f8f8f8;
    }

  .text {
      position: absolute;
      top: 40%;
      left: 15%;
      transform: translate(-50%, -50%);
      color: grey;
      font-weight: bold;
      text-align: center;
      font-size: 11px;
    }

  .bars {
     font-size: 25px;
    color: rgb(0, 0, 0);
    margin: 10px 0 0 10px;
    position: absolute;
    left: 0; 
    cursor: pointer;
    }

  .menu-container {
      position: relative;
    }

  .hamburger {
      width: 25px;
      height: 18px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background-color: white;
    }

  .hamburger:hover {
      transition: transform 0.6s ease-in-out;
      cursor: pointer;
      transform: rotate(360deg) scale(1.1);
    }

  .hamburger div {
      height: 3px;
      background-color: #333;
      border-radius: 2px;
    }

  .menu {
      display: none;
      list-style: none;
      padding: 0;
      margin-top: 10px;
      background: #bbbbbb;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1000;
    }

  .menu li {
      padding: 8px 12px;
      border-bottom: 1px solid #adadad;
      cursor: pointer;
      font-size: 14px;
    }

  .menu li:last-child {
      border-bottom: none;
    }

  .menu li:hover {
      background-color: #ddd;
    }

  .menu.show {
      display: block;
    }

  .menu a {
      text-decoration: none;
      color: black;
    }

  .alt-kategori {
      display: none;
      padding-left: 20px;
      font-style: italic;
      background-color: #969696;
      color: #313131;
    }

  .arrow {
      display: none;
    }

  .arrow.active {
      display: block;
    }

  .arrow-icon {
      margin-left: 10px;
      transition: transform 0.3s ease;
  }
  .header-text p{
    margin-left: 0;

      }
}
