.modal-outer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: backdrop-filter 0.5s, -webkit-backdrop-filter 0.5s;
}

.modal-inner {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 101;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 10%);
    border-radius: 12px;

    width: 55vw;
    height: 30vw;
    background-color: #fffdea;

    opacity: 0;
    transition: opacity 0.5s;
}

.modal-close {
    color: white;
    font-size: large;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-weight: bold;
}