body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
}

.title {
    margin-bottom: 30px;
}

.gallery {
    gap: 15px;
    margin: auto;
    display: grid;
    max-width: 1000px;
    grid-template-columns: repeat(3, 1fr);
}

.gallery img {
    width: 100%;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}