body {
    background-color: #b6796c;
    color: #fdcae1;
    font-family: "times new roman";
    font-size: 30px;
}
img {
    border-radius: 15px;
    box-shadow: 0px 10px 15px black;
}
header h1 {
    color: #39093c;
    font-weight: 900;
    font-size: 50px;
    border-style: dashed;
    width: 500px;
    margin: auto;
    padding: 2px 30px;
    text-align: center;
    border-color: aqua;
}
nav {
    display: inline-block;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: auto auto auto;
}
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 {
    width: 90%;
    margin: auto;
    border-radius: 20px;
    background-color: aquamarine;
    color: blueviolet;
    font-size: 25px;
    box-shadow: 0px 10px 15px black;
}
table td {
    padding: 10px;
    vertical-align: top;
}
table img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0px 10px 15px black;
}
table iframe {
    width: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 10px 15px black;
}
.enlacesinternos a {
    display: block;
    text-align: center;
    margin: 10px auto;
    padding: 10px;
    background-color: lightgray;
    color: rgb(0, 76, 255);
    border-radius: 20px;
    border: 2px solid black;
    text-decoration: none;
    font-size: 25px;
}
footer {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}
footer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition-duration: 1s;
    background-color: #39093c;
}
footer img:hover {
    transform: scale(1.2);
}
h2, h3 {
    color: #39093c;
}
a {
    color: black;
    text-decoration: none;
}