body {
    font-family: Arial, sans-serif;
}

.gallery1 {
    display: flex;
    gap: 20px;
    margin: 20px;
}

.image-container1 {
    position: relative;
    width:;
    height:;
}

.image-container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
   zoom: none;
    transition: filter 0.3s ease;
}

.image-container1 img.clear {
    filter: none;

}


.view-button1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    cursor: pointer;
}

.form-popup1 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-popup1.active {
    display: block;
}
