.modal{
    display: none;
    position: fixed;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);

    z-index: 10000000;

}

.modal-content{
    position: fixed;

    top: 0;

    background-color: var(--background);
    color: var(--text);

    border: none;
    border-radius: 10px;

    margin: 15% auto;
    padding: 20px;
    width: 100%;

    animation: scale 0.5s forwards;

    z-index: 10000000;
}

@keyframes scale {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

iframe {
    width: 100%;
    height: 50svh;

    margin: 1rem 0 0 0;

    border: none;

    border-radius: 10px;
}

.close{
    color: var(--text);
    float: right;

    scale: 3;

    transition: 0.3s;
}

.close:hover{
    color: #f00;

    cursor: pointer;

    transition: 0.5s;
}

.close:active{
    scale: 2.5;
}