body {
    background: #f4f4f4;
    font-family: sans-serif;
    text-align: center;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 100px;
    flex-wrap: wrap;
}

.card {
    background: white;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 200px;
}

.card img {
    width: 100%;
    border-radius: 8px;
     max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.card a {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}
