body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 30px;
    font-weight: bold;
    border: none;
    border-radius: 0;
    display: inline-block;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    font-family: 'Bebas Neue', Impact, sans-serif;
    z-index: 100;
  }
  
  .header-banner {
    width: 100%;
    height: 250px;
    background: linear-gradient(to right, #f7971e, #ffd200);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header-image {
    max-width: 30%;
    height: auto;
    display: block;
  }
  
  .easy-drink-content {
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
  .description {
    font-size: 25px;
    margin-bottom: 40px;
    margin-top: 40px;
    font-family: 'Bebas Neue', Impact, sans-serif;
    text-align: left;             
    max-width: 700px;            
    margin-left: auto;            
    margin-right: auto;           
  }
  
  .slideshow-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 0 auto 60px auto;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
  }
  
  .fade {
    animation: fadeEffect 1.5s ease-in-out;
  }
  
  @keyframes fadeEffect {
    from { opacity: 0.3; }
    to { opacity: 1; }
  }

  .side-by-side-images {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 20px;
    flex-wrap: wrap;
    margin-top: 1rem;;
  }
  
  .side-by-side-images img {
    width: 45%;
    max-width: 300px;
    border-radius: 12px;
    object-fit: cover;
  }

  #etikett1 {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }

  #etikett2 {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
  }
  
  .video-section {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  .video-section video {
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }  

  .section-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Bebas Neue', Impact, sans-serif;
    margin-top: 40px;
    color: white;
  }
  
  .section-description {
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  .video-section {
    display: flex;
    justify-content: center;
    padding: 20px;
  }
  
  .video-section video {
    width: 90%; 
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }
  
  .contact {
    color: white;
    font-family: 'Bebas Neue', Impact, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
  }

.instagram-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.instagram-link img {
  width: 50px;
  height: 50px;
  transition: transform 0.2s ease;
}

.instagram-link img:hover {
  transform: scale(1.1);
}

.figma-section {
  text-align: center;
  margin: 60px auto 100px auto;
  max-width: 700px;
  padding: 0 20px;
}

.figma-description {
  font-size: 20px;
  color: white;
  font-family: 'Bebas Neue', Impact, sans-serif;
  margin-bottom: 10px;
}

.figma-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffcc00;
  color: black;
  text-decoration: none;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 20px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.figma-link:hover {
  background-color: #e6b800;
}

  @media (max-width: 768px) {
    .header-image {
      max-width: 60%;
    }
  }