.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}


.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}


.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: hotpink;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

main {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}