main, footer{
    text-align: center;
}
body{
    background-color: #F9F1DC;
    font-family: Garamond, Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}
header{
    text-align: center;
}
nav li{ /* Especificidade, vai formatar apenas o "li" dentro do "nav" */
    display: inline-block; /* PERMITIR QUE OS LI'S FIQUEM UM DO LADO DO OUTRO */
    list-style-type: none;
}
nav li a{
    display: inline-block;
    border: 2px solid #F5BD26;
    padding: 1em 2em;
    text-decoration: none;
    color: black;
}
nav li a:hover{
    background-color: black;
    color: white;
}
table{
    border-collapse: collapse; /* tira o espaçamento entre células */
    max-width: 70em;
    margin: 0 auto;
}
td, th{
    border: 1px solid black;
    padding: 1em;
}
figure img{
    text-align: center;
    border: 2px solid #F5BD26;
    width: 100%;
}
ul {
    margin: 0 auto;
    width: 90%;
}
ul li {
    display: inline-block;
    list-style-type: none;
    margin: 12px;
}
/*li{
    text-align: center;
    display: inline;
    list-style: none;
    padding: 1em;
}*/
h2{
    text-align: center;
    font-style: italic;
    border-bottom: 1px solid #F5BD26;
}
footer{
    text-align: center;
}
