body {
  background-image: url('bg.jpg');
  background-position: center;
  background-size: cover;
}

.header {
    padding: 60px;
    text-align: center;
    color: white;
    font-size: 30px;
  }

p {
  color: white;
  text-align: center;
}

  .footer {
    position:fixed;
    left:0px;
    bottom:0px;
    height:40px;
    width:100%;
    background:black;
    padding-top:5px;
    padding-left:10px;
 }

 a.insta {
  color: white;
  text-decoration: none;
}

a.twitter {
  color: white;
  text-decoration: none;
}

.copy {
color: white
}

  h1 {
    margin: 0 0 20px 0;
    text-align: center;
    color: white;
  }

  .rainbow {
    /* Chrome, Safari, Opera */
   -webkit-animation: rainbow 7s infinite; 
   
   /* Internet Explorer */
   -ms-animation: rainbow 7s infinite;
   
   /* Standar Syntax */
   animation: rainbow 7s infinite; 
 }
 
 /* Chrome, Safari, Opera */
 @-webkit-keyframes rainbow{
   0%{color: orange;}	
   10%{color: purple;}	
   20%{color: red;}
   30%{color: CadetBlue;}
   40%{color: yellow;}
   50%{color: coral;}
   60%{color: green;}
   70%{color: cyan;}
   80%{color: DeepPink;}
   90%{color: DodgerBlue;}
   100%{color: orange;}
 }
 
 /* Internet Explorer */
 @-ms-keyframes rainbow{
    0%{color: orange;}	
   10%{color: purple;}	
   20%{color: red;}
   30%{color: CadetBlue;}
   40%{color: yellow;}
   50%{color: coral;}
   60%{color: green;}
   70%{color: cyan;}
   80%{color: DeepPink;}
   90%{color: DodgerBlue;}
   100%{color: orange;}
 }
 
 /* Standar Syntax */
 @keyframes rainbow{
     0%{color: orange;}	
   10%{color: purple;}	
   20%{color: red;}
   30%{color: CadetBlue;}
   40%{color: yellow;}
   50%{color: coral;}
   60%{color: green;}
   70%{color: cyan;}
   80%{color: DeepPink;}
   90%{color: DodgerBlue;}
   100%{color: orange;}
 }