body{
   background-color: #E8E9ED;
   font-family: Arial, Helvetica, sans-serif;
}

.contenedor{

    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3,auto);
    grid-template-areas: "header header header"
                         "contenido contenido contenido"
                         "footer footer footer" ; 
    /* place-items: center;                        */
} 


.contenedor header{
    grid-area: header;
    background-color: white; 
    width: 100%;
    box-shadow: 0 0 6px rgba(0,0,0,.5);
    padding: 3px 0px;    
    /*min-height: 280px; */
    /* height: 30vh; */    
	left: 0; 
	top: 0;
	position: fixed; 
} 

.contenedor nav{
    /* grid-area: nav;  */
    height: 70px;
    width: 90%;
    margin: auto;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

nav #logo{
    height: 70px;
    vertical-align: top;
}

nav a{
    text-decoration: none;
    font-weight: 300;
    color: #2C4393;
    margin-right: 10px;
}

.hamburguesa{
    height: 100%;
    width: 70px;
    text-align: center;
    display: none; 

}

.hamburguesa img{
    vertical-align: 0px;
    padding: 23px 0;
}

.contenedor main {
    grid-area: contenido;
    padding-left: 20%;
    padding-right: 20%;
    /* background-color: #E8E9ED; */
}

.contenedor main h2{
    text-align: center;
     margin-top: 120px; 
    color: #2C4393;
}

.imagenes{
    width: 100%;
    /* border: solid red 1px; */
    text-align: center;
}
.parrafo{
    margin-bottom: 70px;
}

form{
    text-align: center;
}

input{
    margin: 3px;
    width: 90%;
    height: 25px;
}

textarea{
    margin-top: 5px;
    width: 90%;
}

#btnEnviarTrabajaCN{
    color:  white; 
    background-color:#009ED8;  
    width: 20%; 
    border:none;
    text-align: center;  
}


footer{
    grid-area: footer;
    background-color: #181919 ;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    
    
}

/* footer div{
    width: 50%;
} */

@media screen and (max-width: 768px){

    .contenedor{

        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3,auto);
        grid-template-areas: "header header header"
                             "contenido contenido contenido"
                             "footer footer footer" ;    
    } 
    
    .contenedor header{
        grid-area: header;
        background-color: white; 
        width: 100%;
        box-shadow: 0 0 6px rgba(0,0,0,.5);
        padding: 3px 0px;    
        /*min-height: 280px; */
        /* height: 30vh; */    
        left: 0; 
        top: 0;
        position: fixed; 
    } 

    .contenedor nav{
        height: 70px; 
        width: 90%;
        margin: auto;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center; 
    
    }
    /* .hamburguesa{
        height: 100%;
        width: 70px;
        text-align: center;
        display: none; 
    
    } */
    
    .hamburguesa{
        display: block;
        height: 100%;
        width: auto;
    }

    .hamburguesa img{
        vertical-align: 0px;
        /* padding: 23px 0; */
    }

    .enlaces{
        position: fixed;
        background-color: #2C4393;
        left: 0;
        top: 70px;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
        transform: translateX(-100%);
        z-index: 1000;
        font-size: 20px;
    }

    .enlaces2{
        transform: translateX(0%);
    }

    .enlaces a{
        color:white;
    }

    nav #logo{
        height: 50px;
        vertical-align: top;
    }
    .contenedor main {
        grid-area: contenido;
        background-color: #E8E9ED;
    }

    form{
        width: 99%;
        margin-bottom: 7px;
    }

    .formu{
        width: 100%;
    }

    .contenedor main{
        padding-left: 1%;
        padding-right: 1%;
    }

    .wrapper-contacto{
        width: 100%;        
    }

    footer{
        grid-area: footer;   
        position: static;     
        padding: 10px;  
    }

    

}