html {
    font-size: 20px;
    font-family: Arial;
    color: white;
}

body {
    padding: 0 40px;
    background-color: #042940;
}

nav {
    padding: 14px 0;
}

nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0 80px;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
}

nav a:hover {
    background-color: #9FC131;
    color: #042940;
}

p {
    text-align: justify;
    margin: 50px;
}

.h1Int,
.h1Hist,
.h1Def,
.h1Obj,
.h1Clv {
    text-align: center;
    color: #D6D58E;
    margin: 50px;
}

.barraNav {
    text-align: center;
}


.imagenes {
    text-align: center;
    margin: 50px;
}

.imagenes img {
    transition: transform 0.25s ease;
}

.imagenes img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #005C53;
    color: white;
    padding: 50px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-top: 2px solid white;
}

.footer-izq,
.footer-cent,
.footer-der {
    flex: 1;
}

.footer-cent img {
    height: 75px;
}

.h1Titulo {
    color: white;
}

.divEncabezado {
    text-align: center;
    margin-bottom: 50px;
    color: #9FC131;
}