body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

.img1 {
    width: 8rem;
}

header {
    display: flex;
    justify-content: space-between;
    height: 100px;
    background-color: rgb(4,60,28);;
    align-items: center;
    padding: 25px;
} 

header {
    display: flex;
}
.logo {
    font-size: x-large;
    color: white;
    display: flex;
    align-items: center;
}

.logo img{
    height: 130px;
    padding-right: 10px;
}
.navegacion {
    height: 10px;
    font-weight: 600;
}
a {
    text-decoration: none;
    color: white;
    padding-right: 15px;
    font-size: larger;
    transition: all 0.25s;
    cursor: pointer;
}
a:hover {
    text-decoration: underline;
    color: #3498db;
    transform: translateZ(-15)
}
h1, h2 {
    text-align: center;
    padding: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 430px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
}

.container .cards {
    padding-left: 15px;
    padding-top: 15px;
    padding-right: 15px;
    width: 330px;
    height: 430px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    transition: all 0.25s;
    margin-left: 7px;
    margin-right: 7px;
}

.container .cards:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2);

}

.container .cards img {
    width: 330px;
    height: 220px;
}

.container .cards h4 {
    padding: 0px;
    font-weight: 600;
}

.container .cards p {
    padding: 10px;
    font-size: 16px;
    font-weight: 300;
}

.container .cards a {
    font-weight: 500px;
    text-decoration: none;
    color: #3498db;
}