.shadowbox-container {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(30px);
    justify-content: center;
    align-items: center;
    z-index: calc(var(--project-modal-z-index) + 10);
}

.shadowbox-body {
    display: flex;
    max-width: 80vw;
    max-height: 80vh;
}

.shadowbox-body img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
}

.shadowbox-container button{
    background: none;
    border: none;
    font-size: 2em;
    color: white;
}

.shadowbox-container .close {
    position: absolute;
    top: 1ch;
    right: 1ch;
    color: white;
}

.shadowbox-container button:hover, .shadowbox-container .close:hover {
    color: black;
}