body{
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.ts{
    text-align: center;
    width: 80%;
    background-color: #16407D;
    color: white;
    font-style: italic;
    margin-left: auto;
    margin-right: auto;
}

.aviso{
    width: 80%;
    height: 40rem;
    background-color: darkgrey;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.aviso img{
    width: 10%;
    height: auto;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

}

 /* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {

}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
    .aviso{
        height: 25rem;
    }
 }

 @media only screen and (min-width: 310px) and (max-width: 616px) {
    #h2{
        font-size: 1rem;
    }

    .aviso img{
        width: 20%;
        height: auto;
    }
    
 }