.header{
    position:fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    background-image: url('background2.gif');
  }
  
  html, body {
    background-color: pink; 
    width: 100%;
  }
    body {
      background-image: url('background2.gif'); 
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
    }
    
  
  
  .spacer {height: 100px;}
  
  .navigation a{
    text-decoration: none;
    margin-right: 30px;
    transition: color 0.3s;
  }
  
  .navigation a:hover {
    background-color: white;
  }
  
  .navigation a{
          font-family: 'Comic Sans MS', cursive; 
          font-style: normal; 
          font-weight: 400;
          font-size: 20px;
        color: hotpink;
    }
  
    .title:hover {
        background-color: white;
    }
  .logo h1 {
    text-decoration: none;
    margin-right: 30px;
    transition: color 0.3s;
  }
  .logo h1 {
      font-family: 'Lilita One', regular 400; 
      font-size: 40px; 
      font-weight: normal;
      font-style: normal; 
      color: hotpink;
  }
  
  .title {
    font-family: "Comic Sans MS", bold;
    color: hotpink;
    text-decoration: none;
    font-size: 50px;
  }
  
  .description {
    font-family: "Comic Sans MS", regular;
    color: hotpink;
    text-decoration: none; 
    font-size: 20px;
    justify-content: center;
    max-width: 1300px; /* Adjust the maximum width of the container */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Add padding inside the border */
  }
  
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gallery figcaption {
    padding: 10px;
    text-align: center;
    font-size: 17px; 
    font-weight: 400; 
    color: white; 
  }

  .gallery {
    max-width: 1300px; /* Adjust the maximum width of the container */
    margin: 0 auto; /* Center the container */
    padding: 20px; /* Add padding inside the border */
  }