* {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    width: 100%;
    background-color: #f4f4f4;
    padding: 10px 40px;
    border-bottom: 2px solid #ddd;
}


body {
    background-color: #ccc;
}

.menu {
    text-align: center;
    flex: 1;
    text-decoration: none;
    font-size: 50px;
}

img {
    height: 20px;
}

.contenedor {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    margin-top: 90px;
}

.contenedor h2 {
    margin-bottom: 15px;
    font-size: 1.6;
}

.contenedor p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contenedor a {
    font-size: 17px;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-bottom: 15px;
    color: black;
    font-weight: 700;
}

.contenedor a i {
    color: orange;
    margin-right: 10px;
}

.contenedor form .campo,
textarea {
    width: 100%;
    padding: 15px 10px;
    font-size: 15px;
    border: 1px solid #dbdbdb;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0px;
}

.contenedor form textarea {
    max-width: 530px;
    min-width: 530px;
    min-height: 140px;
    max-height: 150px;
}

.contenedor .btn-enviar {
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: 0px;
    background: orange;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 300ms ease;
}