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

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

body {
    background-color: #000;
    color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #000 !important;
    color: #fff;
}

.gallery-container,
.container,
main {
    background: #000 !important;
}