/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: #3A3A3A;
  font: 400 1em "Open Sans",sans-serif;
}   

 section {
  background-color: #B8B8B8;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 5px 0px 10px;
  color: #4E4E4E;
  font: 400 17px "Titillium Web",sans-serif;
  padding: 10px;
  }

#fecha {
  color: red;
  }
  
.caja header h1 {
  color: blue;
  }
  
.caja h3 {
  font-size: small;
}

        