body {
    background-color: #b6796c;
    color: #fdcae1;
    font-family: "times new roman";
    font-size: 30px;
}
img {
    border-radius: 15px;
    box-shadow: 0px 10px 15px black;
}
nav {
    display: inline-block;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: auto auto auto;
}
h2, h1{
    color: #39093c;
    font-weight: 900;
    font-size: 50px;
}
footer p {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
table img{
    width: 100%;
    height: 100%;
}
h1{
    border-style: dashed;
    width: 500px;
    margin: auto;
    padding: 2px 30px;
    text-align: center;
    border-color: aqua;
}
nav img {
    transition: transform 0.3s;
    background-color: lightyellow;
    width: 100px;
    height: 100px;
    margin: 5px;
}
nav img:hover {
    transform: scale(1.2);
    background-color: black;
    transition-duration: 3s;
}
table {
    transform: scale(0.9);
    font-size: 25px;
    border: none;
    background-color: aquamarine;
    border-radius: 20px;
    color: blueviolet;
    box-shadow: 0px 10px 15px black;
}
table:hover {
    transform: scale(1);
}
a{
    color:black;
}
#titulo2 {
    display: grid;
    grid-template-columns: auto auto auto;   
    justify-content: center;
}
li.li1 {
    list-style-type: none;
    border-radius: 20px;
    background-color: lightgray;
    color: rgb(0, 76, 255);
    border: 2px solid black;
    width: 90%;
    height: 100%;
    margin: 10px;
    padding: 10px;
    grid-column: auto;
    text-align: justify;
    float: left;
    
}
li.li1:hover {
    transform: scale(1.2);
    border: 10px solid black;
    transition-duration: 1s;
    background-color: lightyellow;
}
span {
    color: darkblue;
    font-weight: 900;
}
.ul2 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
    justify-content: center;
    list-style-type: none;
    justify-content: center;
}
li p {
    border: 2px solid black;
    border-radius: 20px;
    width: auto;
    padding: 10px;
    color: darkblue;
    background-color: aquamarine;
}
li img {
    width: 300px;
    height: 250px;
    border-radius: 20px;
}