@charset "utf-8";
/* Este arquivo estiliza o arquivo index */

/* estilo para tela maior */
@media (min-width: 321px){

    body{		
        font-family: Trebuchet MS;
        color:#333;
        margin: 0px;
        width: 100%;
        overflow: hidden;
    }
    h2{
        text-align:center;
        font-weight:bold;
    }
    p{
        font-size: 14px;
        text-align:justify;
    }
    .footer{
        font-size: 14px;
        text-align:center;
        font-weight:bold;
    }
}

/* estilo para tela menor */
@media (max-width: 320px){

    body{		
        font-family: Trebuchet MS;
        color:#333;
        margin: 0px;
        width: 100%;
        overflow: hidden;
    }
    h2{
        text-align:center;
        font-weight:bold;
        font-size:16px;
    }
    p{
        font-size: 12px;
        text-align:justify;
    }
    .footer{
        font-size: 12px;
        text-align:center;
        font-weight:bold;
    }

}