/*
    ESTA ES MI HOJA DE ESTILO
*/

body{
    /*background-color: rgb(74, 217, 136);*/
    background-color: rgb(205, 169, 223);
    color: rgb(143, 97, 71);
    font-family: Arial, Helvetica, sans-serif; font-size: 2em;
    background-image: url("../imagenes/cafe.png");
    height: 100%;
    background-size: cover;
}
/* este es un identificador Ãºnico */
#codigo {
    color: white;
    font-style: italic;
}

/* esta es una clase */
.destacada {
    font-weight: bold;
    color: darkgoldenrod;
    font-size: 2em;
}
th{
    background-color: rgb(241, 241, 241);
    padding: 8px;
}

#menuprincipal {
background-color: rgba(255, 254, 254, 0);
color: rgb(255, 255, 255);
font-weight: bold;
}
a:hover{
    color:rgb(255, 255, 255)
}
ul li {
    list-style: circle;
}
ol li{
    list-style: upper-roman;
}