/*Base Styles*/
body {
    font-family: Arial, sans-serif;
    font-size: 14px;
}
/*Header styles*/
 header {
    background-color: #ecf988;
    padding:20px;
    text-align: center;
   }

   h1 {
    font-size: 24px ;
    text-align: center;
    color: #0a418f !important;

   }
  /*section*/
  .section {
        margin: 20px;
      }   
    /*Footer Styles*/
  footer {
    background-color: #66a4d1;
    padding: 10px;
    text-align: center;
}
p {
    color: gray
}

/* Internal styles */
p {
    color: slategray;
}

/* External styles */
p {
    color: black; 
}


/* Pseudo-class selector */
a:hover {
    color: lightblue;
}
    
   