.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgb(48, 25, 52), rgb(97, 67, 133), rgb(186, 85, 211));
    padding: .5rem;
    border-radius: 1rem;
    position: relative;
    width: 70%;
    max-width: 500px;
}

.close {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 2.7rem;
    cursor: pointer;
    color: #8a2be2;
    /* background-color: #8a2be2; */
    font-weight: bold;
    padding: .03rem .3rem;
    border-radius: 50%;
    transition: .8s ease-in-out;
}

.close:hover {
    scale: 1.1;
    filter: brightness(1.5);
}

iframe {
    width: 100%;
    height: 300px;
    border: 0;
}