/*
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 : 8/07/2021, 04:12:48 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: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    
    grid-template-areas: "header header header header"
                         "section1 section2 section3 section4"
                         "texto1 texto2 texto3 texto4"
                         "footer footer footer footer";
   
}

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

 #section-principal #section1{
    grid-area: section1;
    background-color: #55a8fd;
}
#section-principal #section2{
    grid-area: section2;
    background-color: #55a8fd;
}
#section-principal  #section3{
    grid-area: section3;
    background-color: #55a8fd;
}
#section-principal #section4{
    grid-area: section4;
    background-color: #55a8fd;
}



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

#contenedor  #section1 img{
    width: 250px;
    height: 300px;
    border: groove 5px gray;
    border-radius: 2em;
    
    display: block;
    margin: auto;
    
}

#contenedor #section2 img{
    width: 250px;
    height: 300px;
    border: groove 5px gray;
    border-radius: 2em;
    display: block;
    margin: auto;
    
   
    
}

#contenedor #section3 img{
    width: 250px;
    height: 300px;
    border: groove 5px gray;
    border-radius: 2em;
    
    display: block;
    margin: auto;
   
    
}

#contenedor #section4 img{
    width: 250px;
    height: 300px;
    border: groove 5px gray;
    border-radius: 2em;
   
    display: block;
    margin: auto;
}

#contenedor #texto1{
    grid-area: texto1;
}

#contenedor #texto2{
    grid-area: texto2;
}

#contenedor #texto3{
    grid-area: texto3;
}

#contenedor #texto4{
    grid-area: texto4;
}

#texto1 p, #texto2 p, #texto3 p, #texto4 p{
    padding: 20px;
    text-align: justify;
    font-family:'Roboto', sans-serif;
    font-size: 25px;
}

#texto1 h2, #texto2 h2, #texto3 h2, #texto4 h2{
    text-align: center;
    font-size:30px;
    color: black;
    
    font-weight: bold;
}

a{
    text-decoration: none;
    display: block;
    width: 100%;
    margin: auto;
    height: 40px;
    padding: 5px;
    color: white;
    background-color: #faa43d;
    border: 2px solid gray;
    border-radius: 5px;
   
    font-size: 30px;
    text-align: center;
    
}

a:hover{
    background-color: #aaa43a;
}