.principal-container{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: rgba(128, 128, 128, 0.3);
    overflow: auto;
    position: fixed;
    opacity: 0;
    pointer-events:none;
    transition: 0.5s;
    z-index: 3;

}
.principal-container .alerta-container{
    display: flex;
    flex-direction: column;
    width: 54%;
    border-radius: 1.4vw;
    height: 64%;
    background-color: white;
    border: solid 0.3vw #c24b2b;
    transition: 0.5s;
}
.alerta-container .titleAndX{
    display: flex;
    width: 100%;
    height: 15%;
    align-items: center;
    justify-content: space-between;
    border-bottom:solid #c24b2b 0.2vw ;
    overflow: hidden;
}
.titleAndX .part{
display: flex;
align-items: center;
justify-content: center;
width: 10%;
height: 100%;

}
#x{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vw;
    text-align: center;
    width: 70%;
    height: 65%;
    color: #025288;
    background: none;
    border: none;
    transition: 0.5s;
}
#x:hover{
    color:red;
    transform: scale(1.2);
    cursor: pointer;
}
.titleAndX .titulo{
    font-size: 2.4vw;
    font-family:Open Sans;
    text-align: center;
    font-weight: 600;
   
} .alerta-container .container-text{

    display:flex;
    width: 100%;
    height: 85%;
    justify-content: center;
    align-items: center;
}
.container-text .inserte-texto{
    display: flex;
    width: 95%;
    height: 85%;
    justify-content: center;
    align-items: center;
    font-family: Open Sans;
    font-size: 1.1vw;
    overflow-y: auto;
}
@media(max-width:1100px){

    .principal-container .alerta-container{
        display: flex;
        flex-direction: column;
        width: 72%;
        border-radius: 1.4vw;
        height: 64%;
        background-color: white;
        border: solid 0.3vw #c24b2b;
    }
    .titleAndX .titulo{
        font-size: 3.8vw;
        font-family:Open Sans;
        text-align: center;
        font-weight: 600;}
        .container-text .inserte-texto{
            display: flex;
            width: 95%;
            height: 85%;
            justify-content: center;
            align-items: start;
            font-family: Open Sans;
            font-size: 2vw;
            text-align: center;
        }
        @media(max-width:800px){
            .titleAndX .titulo{
                font-size: 26px;
                font-family:Open Sans;
                text-align: center;
                font-weight: 600;}
            .container-text .inserte-texto{
                display: flex;
                width: 95%;
                height: 85%;
                justify-content: center;
                align-items: start;
                font-family: Open Sans;
                font-size: 18px;
                text-align: center;
            }
        }
        @media(max-width:400px){
            .principal-container .alerta-container{
                display: flex;
                flex-direction: column;
                width: 90%;
                border-radius: 1.4vw;
                height: 64%;
                background-color: white;
                border: solid 0.3vw #c24b2b;
            }

        }
}