/* Parâmetros Body: Fundo(Cor: #66CDAA; Imagem: fundo.png, Sem Repetir, Alinhada no Centro,
 Fixa) */

body {
     
    background-color:#020005;
    background-image:url("../images/fundo.png");
    background-repeat:no-repeat;
    background-position: center center;
    background-attachment: fixed; 
}

/*-Parâmetros h1:( Color:#69b3f5; Alinhamento do Texto: Centro, Variant: Small-Caps)
        --*/

 h1 {                
    color:#69b3f5;
    text-align:center;
    font-family:"Comic Sans MS", "sans-serif", "cursive";
    font-variant:small-caps;

    /*-Parâmetros Efeito:( Titulo Piscando)
        --*/ 

    text-decoration: blink;
    animation: blink 3s infinite;
    }
    
    @keyframes blink {
      0% {
        opacity: 1;
      }
      50% {
        opacity: 0;
        transform: scale(2);
      }
      51% {
        opacity: 0;
        transform: scale(0);
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }


/*-Parâmetros P:
       (Cor: :#ffffff, Alinhamento do Texto: Justificado, Tamanho: 20px,
        Tabulação: 5%)--*/

p{        
     color:#ffffff;
     text-align:justify;
     font-size:20px;
     text-indent:5%;
}
h2{        
  color:#ffbb00;
  text-align:justify;
  font-size:18px;
  text-indent:5%;
}

a{ color:#f8f8f8;
  font-size:14px;
  text-indent:5%;
  margin-left: 100px;
}

footer {
     
    background-repeat:no-repeat;
    background-position: center center;
    background-attachment: fixed; 
    margin-top: 2em;
}


h6 {
     color: #69b3f5;
     font-size:12px;
     text-align:center;
   }

 
  


    
     
    
