.overlay-container{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
    width:100%;
    position: fixed;
    z-index:3000;
    top: 0px;
    left: 0px;
}
.overlay{
    max-width:700px;
    margin: 30px auto;
    background-color: #8101005d;
    backdrop-filter: blur(5px);
    border-radius:10px;
    z-index:3001;
}
.overlay p{
    text-align: right;
    padding:20px;
    padding-bottom: 0px;
    color:white;
    font-size:20px;
    font-weight:700;
    z-index:3002;
    cursor: pointer;
}
.overlay img{
    margin: 20px;
    border: 5px solid #810100;
    max-height: 90vh;
    z-index:3002;
    width: 94%;
}
@media (max-width: 768px){
    .overlay-container{
    height:100vh;
    width:100%;
    }
    .overlay img{
    max-height: 50vh;
    width: 92%;
}
}