/* Tamanho padrão para Tablets */
@media only screen and (max-width: 768px) {

    #home h1.display-4 {
        font-size: 2rem;
    }

     .container-sm{
    	width: 100%;
        text-align: center;
    }
    #tela1{
    	display: none;
    }
    footer{
        position: absolute;
    }
}

/* Tamanho padrão para Celulares */
@media only screen and (max-width: 480px) {
    .container-sm{
    	
    }
    #tela1{
    	display: block; 
    	text-align: center;
    }
    #home h1.display-4 {
        font-size: 2rem;

    }

    
}