body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    position: relative;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(8px); 
    display: none; 
    z-index: 999; 
}

.img-fluid {
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.img-small {
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* transition: transform 0.2s ease-in-out; */
}

/* .img-small:active {
    transform: scale(1.05);
} */

.centered-row {
    display: flex;
    justify-content: center;
}

/* @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    animation: bounce 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} */

.fade-in {
    animation: fadeIn 0.5s;
}

.collage-img-small {
   
    cursor: pointer;
}

/* .collage-img-small:hover {
    transform: scale(1.1);
} */

.collage-fade-in {
    animation: fadeIn 0.5s;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

#contactForm {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0 0 40px rgba(22, 13, 150, 0.847);
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    z-index: 1000;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.btn {
    margin-right: 10px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: rgb(130, 133, 133);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(250, 244, 244);
    border-radius: 10px;
}
