* {
    font-family: Arial, Helvetica, sans-serif;
}

.body {
    background: #e7ded8;
    padding: 100px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.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;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    border: solid 1px rgba(red, green, blue, alpha);
}

table {
    color: #fff;
    font-size: 16px;
    table-layout: fixed;
    border-collapse: collapse;
}

thead {
    background: #f59b60;
}

th {
    padding: 20px 25px;
    font-weight: 500;
    text-transform: uppercase;
}

td {
    padding: 15px;
    border-bottom: solid 1px;
    background: #fffefe63;
    text-align: center;
    color: #f8a378;
}

tbody tr {
    cursor: pointer;
}

tbody tr:hover {
    background: #f0ece9cc;
}

tbody tr td img {
    width: 80px;
    height: 142px;
    transition: transform 0.2s;
}

tbody tr td img:active {
    transform: scale(1.2);
}