*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
    font-family: poppins, sans-serif;
}
.container{
    width: 100%;    
    height: 100vh;
    display: flex;
    justify-content: center;    
    align-items: center;
    background: #3b4dec;
}
.popup {
    width: 40%; 
    background: #ebeaea;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    align-items: center;
    text-align: center;
    z-index: 9999  ;
    padding: 10px;
    visibility: hidden;
}
.open-popup {
    visibility: visible;
    top:50%;
    transform: translate(-50%, -50%) scale(1);
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.popup img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50px;
    
}
.popup h2 {
    margin: 20px 0;
    font-size: 24px;
    color: #8f0606;
}
.popup p {
    font-size: 16px;
    color: #121010;
    margin-bottom: 20px;
}
.popup button {
    width :80%;
    background: #fb0101;
    color: #fff;
    border: none;
    padding: 5px 5px;
    border-radius: 10px;
    cursor: pointer;

}

.zoomimg {
    width: 80%; 
    background: #ebeaea;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 20%;
    transform: translate(-10%, -10%) scale(0.1);
    align-items: center;
    text-align: center;
    z-index: 9998  ;
    visibility: hidden;
}
.open-zoomimg {
    visibility: visible;
    top:10%;
    transform: translate(-15%,40%) scale(1);
    transition: cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.zoomimg img {
    width: 100%;
    margin-top: 0px;
    border-radius: 0px;
}

.zoomimg button {
    width :30%;
    height:80px;
    font-size:large;
    background: #fb0101;
    color: #fff;
    border: none;
    padding: 5px 5px;
    border-radius: 10px;
    cursor: pointer;
}

