body {
    font-family: sans-serif;
    background: #f9f9f9;
    text-align: center;
    padding: 20px;
}
h1 {
    margin-bottom: 20px;
}
form {
    margin-bottom: 30px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery a {
    margin: 10px;
}
.gallery img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}
.pagination {
    margin-top: 20px;
}
.pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    border: 1px solid #ccc;
}
.pagination a.active {
    background: #333;
    color: white;
}
