/* 
    ESTA ES MI HOJA DE ESTILO
*/
body{
     background-color: rgb(159, 128, 231);
     color: black;
     font-family: Arial, Helvetica, sans-serif;
     background-image: url(../imagenes);
     
 }
 /* Este es un identificador único */
 #codigo {
      color: rgb(255, 255, 255);
      font-style: italic;
 }
 /* Esta es una clase */
 .destacada {
      font-weight: bold;
      color: burlywood;
      font-size: 1em;
 }
 
 th{
      background-color:rgb(252, 148, 63);
      color: rgb(87, 62, 156);
      padding: 10px;
 }

 td {
      border: 1px solid #ddd;
      padding: 8px;
 }
 #menuPrincipal{
      background-color: rgb(89, 219, 252);
      color: rgb(74, 120, 247);
      font-weight: bold;
 }
 a :hover{
      text-decoration: none;
      font-style: italic;
 }
 a:visited{
     color: rgb(236, 243, 140);
 }
 ol li{
     list-style: upper-roman;
 }