ol {
    color: blue;
}
      
 ol ol {
    font-weight: 700;
}
      
ul {
    list-style-type: none;
}
  
td, th {
    border-width: 1px;
    border-style: solid;
}

td {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

table {
  border-collapse: collapse;
}

#carlos {
    font-style: italic;
}

.edad, .age {
    background-color: yellow;
}

#carlos .edad {
    font-weight: 900;
}

td.edad {
    font-size: 150%;
}

header {
    background-color:indianred;
    border:darkred solid 2px;
    height: 100px;
    position: absolute;
    left: 16%;
    right: 0px;
}
  
nav {
    background-color: burlywood;
    border:yellow solid 2px;
    position: fixed;
    top: 0px;
    bottom: 0px;
    width: 15%;
}
  
main {
    background-color: lightgreen;
    border: darkgreen solid 2px;
    position: absolute;
    top: 100px;
    bottom: 80px;
    left: 16%;
    right: 0px;
    overflow: scroll;
}
  
  footer {
    background-color: lightskyblue;
    border: darkblue solid 2px;
    position: absolute;
    bottom: 0px;
    height: 80px;
    left: 16%;
    right: 0px;
}

.contenido {
    background-color:coral;
    border:orangered solid 2px;
    height: 400px;
    width: 450px;
    margin: 20px;
    display: inline-block;
  }