.aviso{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.aviso .icon{
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: rgb(187, 2, 2);
    font-size: 30px;
    margin: 15px  5px 0px 20px;
    border: 3px solid rgb(187, 2, 2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.aviso .msg{
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    color: rgb(187, 2, 2);
    padding-top: 15px;
    padding-left: 10px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

@keyframes surgir {
    0%{
        opacity: 0;
        transform: scale(0,0);
    }
    50%{
        opacity: 1;
        transform: scale(1,1);
    }
    100%{
    }
}
