body {
    margin: 0px;
    background-color:white;
    font-family: sans-serif;
}

header {
    background-color: yellow;
    width: 100%;
    height: 130px;
}

#container, #caja {
    display: flex;
}

nav {
    padding: 40px;
    width: 420px;
}

main {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
}

h1 {
    text-align: center;
    margin-top: 0px;
    padding-top: 20px;
    color: #555;
    font-variant: small-caps;
    font-size: 4em;
    font-family: serif;
}

#photo, #data {
    padding: 40px;
    margin-top: 40px;
    height: inherit;
    border-radius: 25px;
}

#photo {
    background-color: blue;
    color: white;
}

#data {
    background-color: red;
    color: white;
}

img {
    margin: auto;
    display: block;
    height: 300px;
    border: solid yellow 3px;
    border-radius: 15px;
    padding: 2px;
}

#data th {
    text-align: right;
    padding-right: 5px;
}

footer p {
    text-align: center;
}