.body {
    background: #e7ded8;
    padding: 100px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo {
    background: #ff6600;
}

.logo img {
    align-content: center;
    width: 170px;
    height: 60px;
    margin-top: 10px;
}

.enlacenav {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.enlacenav:hover {
    background: #ee9b63;
}

nav {
    background: #ff6600;
    padding: 10px;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    nav {
        display: none;
        flex-direction: column;
    }

    .enlacenav {
        margin: 10px 0;
    }
}

footer {
    background: #f3ab7b;
    padding: 10px;
    display: flex;
    justify-content: center;
    color: #fff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.column {
    width: 20%;
    display: inline-block;
    vertical-align: sub;
    padding: 0;
    box-sizing: border-box;
}

.column h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.column p {
    font-size: 14px;
    line-height: 1.4;
}

.form {
    margin-right: 25%;
}

.form button {
    align-content: center;
    margin-left: 50px;
}

h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 50px;
    text-align: center;
}

h3 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    text-align: center;
}

p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    text-align: center;
}

.container-card {
    width: 100%;
    display: flex;
    max-width: 1100px;
    margin: auto;
}

.title-cards {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    color: rgb(61, 60, 60, 45);
}

.card {
    width: 100%;
    margin: 20px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    transition: all 400ms ease-out;
    cursor: default;
}

.card:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-3%);
}

.card img {
    width: 100%;
    height: 210px;
}

.card .contenido-card {
    padding: 15px;
    text-align: center;
}

.card .contenido-card h3 {
    margin-bottom: 15px;
    color: rgb(88, 83, 83);
}

.card .contenido-card p {
    line-height: 1.8;
    color: #3d3b3b;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.card .contenido-card a {
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    text-decoration: none;
    color: #f3ab7b;
    border: 1px solid #ee9b63;
    border-radius: 4px;
    transition: all 400ms ease;
    margin-bottom: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.card .contenido-card a:hover {
    background: #ee9b63;
    color: #fff;
}

@media only screen and (min-width:320px) and (max-width:768px) {
    .container-card {
        flex-wrap: wrap;
    }

    .card {
        margin: 15px;
    }
}
