@media (max-width: 1080px) {
    body {
        background: url('../images/bg-mobile.svg') center / cover no-repeat;
    } 
    
    main { 
     flex-direction: column; 
     padding: 25px;
     align-items: center;
    }
     
     .principal img {
        padding: 0 40px;
        width: 380px;
     }

     .information {
        align-items: center;
        text-align: center; 
        padding: 3px 5px;
    }

     .information h1 {
        font-size: 25px;
     }

     .information p {
     font-size: 20px;
     }

    footer {
    justify-self: center;
    }
} 

@media (min-width: 1081px) and (max-width: 1350px){
    main { 
    padding: 15px; 
    }

    .principal img {
        width: 40em;
    }
} 

/* max-width: 768px (mobile)
min-width: 769px and max-width: 1024px (tablet)
min-width: 1025px (desktop e grandes telas) */