body {
    font-family: Arial, sans-serif;
    background: #e3f2fd;
    margin: 0;
    padding: 0;
}

.gallery-container {
    text-align: center;
    padding: 40px;
}

.gallery-title {
    font-size: 2rem;
    color: #1e88e5;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover img {
    opacity: 0.8;
}
