.lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-family: "Edu NSW ACT Foundation", cursive;
    font-size: 25px;
}
h3 {
    text-align: center;
    font-size: 30px;
}
p {
    padding: 6px;
    line-height: normal;
}
h1{
    text-align: center;
    font-family: "Edu NSW ACT Foundation", cursive;
    font-size: 45px;
    padding-bottom:20px ;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  

  .gallery-container {
    text-align: center;
    max-width: 1100px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  

  

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 10px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
 
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 400px) {
    h1 {
      font-size: 2rem;
    }
  }
  