.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: lightgoldenrodyellow;
    width: 55%;
    height: 90%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 55px;
    cursor: pointer;
    color:lightgoldenrodyellow;
    border: 2px;

}
.close:hover{
    color: black;
}

