body {
    margin: 0;
    padding: 10px;
    background-color: black;
}

.container {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    overflow-y: auto;
    box-sizing: border-box;
}

.row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 250px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    justify-items: center;
    align-items: center;
}

.column {
    display: contents;
}

.column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column img:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #bbb;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .row {
        grid-template-columns: 1fr;
    }
}


