@charset "utf-8";

.modal {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.modal>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal>div>img {
    width: calc(100% - 30px);
    max-width: 800px;
}

img.popup {
    cursor: pointer;
    transition: all .3s;
}

img.popup:hover {
    filter: brightness(.9);
}

