.titulo-modal{
    color: #fff;
    text-align: center;
}

.ventana-background{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.925);
    z-index: 1;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ventana-contenedor{
    position: relative;
    background-color: #000;
    width: 550px;
    height: auto;
    padding: 1.5rem;
    border-radius: 8px;
    animation-name: modal;
    animation-duration: .5s;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.404);
    z-index: -10;
}

@keyframes modal{
    from{
        transform: translateY(50vh);
    }
    to{
        transform: translateY(0);
    }
}

.close{
    transition: transform 1s cubic-bezier(0, -0.42, 1, -0.41);
    transform: translateY(60vh);
}

.cerrar-button{
    position: absolute;
    border-radius: 50%;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    cursor: pointer;
}

.icon-x{
    fill: rgba(0, 0, 0, 0.404);
}