#modalImageDialog {
    display: none;
    border-radius: 10px;
    border: none;
    padding: 0px;
}

#modalImageDialog[open] {
    display: block;
    animation: popin .7s;
}

#modalImage{
    display: block;
    width: 100%;
}

@keyframes popin {
    from {
        scale: 0%;
    }
    to {
        scale: 100%;
    }
}

#modalImageDialog::backdrop {
    background: rgba(3, 20, 32, 0.7);
}

#modalCloseButton {
    position: absolute;
    top: 2px;
    right: 3px;
    color: black;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid white;
    border-radius: 20%;
    padding: 2px 10px;
    background: white;
    outline: none;
}

#modalCloseButton:hover {
    transform: scale(1.1);
}