@import url(https://fonts.bunny.net/css?family=amita:700);

/* Heading */
h1 {
    color: #212121;
    font-family: Amita;
    margin: 20px auto;
    width: 90%; 
    max-width: 450px;
    font-size: 3rem;
    text-align: center;
    border-bottom: 10px double #212121;
}

/* Gallery container */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* center images horizontally */
    gap: 20px;                /* spacing between images */
    padding: 20px;
    margin: 0 auto;
}

/* Images */
.imgg {
    width: 330px;      /* fixed width */
    height: 300px;     /* fixed height */
    border: 5px solid #0D47A1;
    margin: 10px;
    transition: all 0.5s ease;
    object-fit: cover;
    transform: scale(1);
}

/* Hover effect */
.container .imgg:hover {
    border: 5px solid #fff;
    transform: scale(1.1);
    z-index: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .container {
        justify-content: center;
        gap: 15px;
    }

    .imgg {
        width: 90%;     /* almost full width on small screens */
        height: auto;   /* adjust height proportionally */
        max-width: 330px; 
    }
}
