/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12/07/2021, 04:38:49 PM
    Author     : namuel.solorzano
*/

*{
    margin:0;
    padding:0;
}

body{
    background-color: #E9ECF4;
    color: #000;
    font-family:'Roboto', sans-serif;
    
}

#contenedor{
    width: 80%;
   
    margin: 20px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(3, auto);
    colums-gap: 10px;
    grid-template-areas: "header header"
                         "section1 section2"
                         "footer footer";
   
    
    
}

#contenedor header{
    grid-area: header;
    background-color: #12203e;
    color: #fff;
    padding: 20px;
    
    font-size: 50px;
}

#contenedor #section1{
    grid-area: section1;
    background-color: #fff;
    display: flex;
    
    justify-content: center;
}

#contenedor #section1 img{
    display: block;
    width: 250px;
    height: 300px;
}

#contenedor #section2{
    grid-area: section2;
    background-color: #fff;
}

#contenedor #section2 h1, a, H2, textarea, input{
    display: block;
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
    font-size: 30px;
}

#contenedor #section2 input{
    background-color: #0d3810;
    padding: 10px 0px;
    color: #fff;
}

#contenedor #section2 input:hover{
   background-color: #304c32;
   border: 1px solid green;
}

#contenedor footer{
    background-color: #12203e;
    color: #fff;
    grid-area: footer;
    padding: 20px;
    font-size: 25px;
}


