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

.pop-up-contenido {
    background-color: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
    text-align: center;
    margin: 10%;
}

.pop-up-contenido p {
    font-weight: 500;
    font-size: 1.3rem;
    padding-bottom: 1.6rem;
}

.pop-up-contenido h4 {
    font-size: 1.5rem;
    padding-bottom: 1.8rem;
}

.pop-up-contenido button {
    border: none;
    padding: 0.4rem 3rem;
    font-size: 1.5rem;
    justify-content: space-between;
    cursor: pointer;

    border-radius: 5px;
    color: #fff;
}

.pop-up-contenido #si {
    background-color: #4CAF50;
}

.pop-up-contenido #no {
    background-color: rgb(200, 9, 9);
}

@media  screen and (max-width:600px) {
    
    .pop-up-contenido #no {
        margin-top: 5%;
    }
    
}