body {
    margin: 0;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gallery-container {
    width: 80%;
    height: 80%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.5s ease;
}

.image.active {
    z-index: 1000;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .gallery-container {
        width: 90%;
        height: 70%;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        width: 95%;
        height: 60%;
    }
}