body {
  background-color: white;
  background-size: cover;
}
.header-container {
  background-color: whitesmoke;
  padding: 15px 20px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-button {
  border: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.logo-button img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  gap: 10px;
  flex-grow: 1;
  justify-content: center;
}

.nav-menu button {
  background-color: whitesmoke;
  color: black;
  border: 1px solid #ddd;
  border-radius: 0;
  width: 100px;
  height: 40px;
  font-family: 'Times New Roman', Times, serif;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-menu button:hover {
  background-color: lightgray;
}

.mobile-menu-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: black;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: whitesmoke;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 20px;
      transition: left 0.3s ease;
      gap: 20px;
      z-index: 1000;
  }
  
  .mobile-menu-toggle:checked ~ .nav-menu {
      left: 0;
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(2) {
      opacity: 0;
  }
  
  .mobile-menu-toggle:checked + .menu-toggle span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
  
  .logo-button {
      margin-right: auto;
  }
}
  .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .box {
    flex:16 16 480px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
  }
  .image {
    position: relative;
    text-align: center;
    padding-top: 30px;
    overflow: hidden;
  }
  .image img {
    height: 350px;
  }
  .box:hover .image img{
    transform: scale(1.1);
  }
  .ikon {
    position: absolute;
    bottom: -110px; left: 0; right: 0;
    display: flex;
  }
  .ikon a{
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    width: 100%;
    background: whitesmoke;
    color: black;
    text-decoration: none;
  }
  .box:hover .image .ikon {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    background: lightgray;
    color: white;
    text-decoration: none;
  }
  .ikon a:hover {
    background: gray;
    color: white;
    text-decoration: none;
  }
  .innehåll {
    padding:30px;
    text-align: center;
  }
  .innehåll H1 {
    font-size: 30px;
    color: black;
  }
  .pris {
    font-size: 20px;
    color: black;
    font-weight: bolder;
    padding-top: 10px;
  }