* {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #f4f6f8;
  }
  
  .gallery-hero {
    text-align: center;
    padding: 80px 20px;
    background: #141414;
    color: wheat;
  }
  
  .gallery-hero h1 {
    font-size: 3rem;
  }
  
  .gallery-grid {
    padding: 60px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  
    /* animation */
    opacity: 0;
    transform: translateY(-80px);
    animation: dropDown 0.8s ease forwards;
  }
  
  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  @keyframes dropDown {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  