.overlay__ {
    background-color: hsla(0, 0%, 0%, 0.3);
    backdrop-filter: blur(5px) grayscale(.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    height: 100%;
    display: none;
    width: 100%;
}
.overlay__ img {
    border-radius: 6px;
    width: 100%;
    display: block;
    box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.404), 0 0 14px hsla(0, 0%, 0%, 0.56);  
    max-width: 800px; 
    margin-inline: auto;
}
.overlay__background {
    padding: 30px;
    
    display: flex;
    flex-direction: column;
    align-items: flex-end
}
.closebutton {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0px 10px 10px 0px;
    filter: drop-shadow( 0 0 3px hsla(0, 0%, 0%, .8));
}
.close_part {
    width: 100%;
    height: 4px;
    background-color: hsl(0, 0%, 100%);

    border-radius: 2px;
    cursor: pointer;
}

.close_part:nth-of-type(1) {
    rotate: 45deg;
    translate: 0px 2px;
}
.close_part:nth-of-type(2) {
    rotate: -45deg;
    translate: 0px -2px;
}

