body {
    margin: 0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* Animated background: clouds floating over water */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #87ceeb 60%, #ffffff 100%);
    overflow: hidden;
    z-index: -1;
}

.cloud {
    position: absolute;
    background-image: url("../images/gallery-images/clouds-svgrepo-com.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 100px;
    animation: floatClouds 30s linear infinite;
    opacity: 0.7;
}

.cloud:nth-child(2) {
    top: 20%;
    left: -200px;
    animation-delay: 10s;
}

.cloud:nth-child(3) {
    top: 40%;
    left: -300px;
    animation-delay: 20s;
}

.cloud:nth-child(4) {
    top: 60%;
    left: -250px;
    animation-delay: 30s;
}

@keyframes floatClouds {
    from {
        transform: translateX(-200px);
    }

    to {
        transform: translateX(120vw);
    }
}

/* Gallery styling */
.gallery-img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.modal-img {
    width: 100%;
    border-radius: 10px;
}