* {
    box-sizing: border-box;
    font-family: "Rubik", sans-serif; /* Use the same font family */
  } 
.header {
    text-align: center;
    padding: 32px;
    margin-bottom: 30px;
    font-size: small;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
   
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   
  }
  
  .column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    cursor: pointer;
    border-radius: 30px;
    border: white 2px solid;
  }
  
  @media  screen  and (max-width: 900px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }
  
  @media   screen and (max-width: 700px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }
  
  
  
  /* Lightbox styles */
  #lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* minder fel */
    z-index: 9999;
    flex-direction: column;
  }
  
  #lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  #close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
  }
  
  #download-btn {
   
    color: white;
    padding: 10px 16px;
    
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10000;
  font-family: "Rubik", sans-serif; ;

  background-color: rgb(255, 155, 155); /* Transparent red */
 
  border: 2px solid white; /* Slight border for definition */
  }
  
  /* Button styles for swipe/previous/next */
  #prevBtn, #nextBtn {
    position: absolute;
    top: 45%;
    width: 60px; /* Set width for circular shape */
    height: 60px; /* Set height for circular shape */
    font-size: 30px; /* Adjust font size to fit inside the button */
    color: white; /* Text color */
    background: gray; /* Gray fill */
    opacity: 70%;
    border: 2px solid white; /* White outline */
    border-radius: 50%; /* Make the button circular */
    padding: 0; /* Remove extra padding */
    cursor: pointer;
    z-index: 10001;
    display: flex; /* Enable flexbox for content alignment */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add subtle shadow for depth */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Add hover effect */
}

#prevBtn:hover, #nextBtn:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background: darkgray; /* Darken the fill on hover */
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

.nav {
  background-color: rgba(255, 70, 70, 0.5); /* Transparent red */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 2px solid white; /* Slight border for definition */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  border-radius: 60px; /* Rounded corners for a smoother look */
  padding: 10px 10px; /* Add 10px padding to the top, bottom, left, and right */
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Stack items vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  height: 90px; /* Set a fixed height for the nav block */
  margin-top: 20px;
}

img:hover {
  transform: scale(1.02);
}
