/* 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: black;
  font-family: Verdana;
}*/
/*  Estilos de línea,       ID(#),      Clases(.),      Elementos   | Representación */
/* --------------------------------------------------------------------------------- */
#caja h1 {color: yellow;}
/*  0,                      1,          0,              1           |                */
/* --------------------------------------------------------------------------------- */
#caja header h1 {color: blue;}
/*  0,                      1,          0,              2           |                */
/* --------------------------------------------------------------------------------- */
#caja .cabecera h1 {color: orange;}
/*  0,                      1,          1,              1           |       X        */
/* --------------------------------------------------------------------------------- */
header h1 {color: purple;}
/*  0,                      0,          0,              2           |                */
/* --------------------------------------------------------------------------------- */
h1 {color: red;}
/*  0,                      0,          0,              1           |                */