/*p é um seletor*/
        /*color é uma propriedade*/
        /*blue é o valor*/
        /* p (color:blue;) uma regra*/
        /*Conceito de herança - */
        
        h1{
            background-color: yellow;
            color: red;
            letter-spacing: 10px;
            font-family: Arial, Helvetica, sans-serif;
            text-align: center;
            text-decoration: underline;
            font-size: 50px;
        }
        p{
            color: black;
            background-color: rgb(185, 185, 185);
            font-family: Arial, Helvetica, sans-serif;
            font-size: 20px;
            line-height: 3.0em;
            font-style: italic;
        }