body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
}

.image-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    max-height: 100vh;
    overflow-y: auto;
}

.image-wall img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.image-wall img:hover {
    transform: scale(1.05);
}
