charset="utf-8";

html {
}

body {
    display:flex;
    flex-direction:column;
    font-family: sans-serif;
    padding:0;
    background-color: rgba(127, 140, 141, 0.50);
    width: 100%;
    align-content: center;
    align-items: center;
    margin:0;
    
}

/* ---------------- ESTILOS PARA HEADER ----------------------- */

header {
    background-color: #7f8c8d;
    display:flex;
    flex-direction: row;
    justify-content: center;
    margin:0;
    margin-bottom: 2em;
    padding:0.6em;
    width:100%;
    box-shadow: 0px 10px 10px rgba(128, 128, 128, 0.33); 
}

header a figure { width: 200px; }

header a figure img {
    width: 100%;
}

/* ------------------ESTILOS PARA SECCION ----------------*/
section {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top:2em;
    width: 900px;
    padding:0.6em;
    margin:0em;;
    color: #7f8c8d;
    background: #fff;
    margin-bottom:2em;
}

#sep {
    margin-top: 2em;
}

section h3 {
    font-weight: 400;
    font-size: 16pt;
    text-align: center;
    margin-bottom:1em;
}

hr {
    width: 40%;
}

section figure {
    margin:0;
    margin-bottom: 1em;
}

section div {
    min-width: 500px;
    padding:0; margin:0;
}

section h2 {
    font-weight: 400;
    width: 45%;
    font-size: 16pt;
}

.fields {
	display: block;
    text-align:center;
    margin: 0;
	padding: 5px 10px;
	font-size: 1em;
    font-weight: 400;
	background: transparent;
	color: #7f8c8d;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #999;
    width: 100%;
}

.linea {
    display:flex;
    flex-direction: row;
    justify-content: center;  
    align-items: center;
}

.boton {
    margin-top: 20px;
	margin-bottom: 20px;
    background: #27AE60;
    border: none;
    font-size: 1.6em;
    font-weight: 300;
    padding: 5px 0;
    width: 100%;
    border-radius: 3px;
    color: #b3eecc;
    border-bottom: 4px solid #1e8449;
}

section h3 a {
    text-decoration: none;
    color: #1baf95;
}

section h3 a:hover {
    color: #108d77;
}

/*----------------- Seccción footer -----------------------*/

footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color:#78898B;
    text-align: center;
    line-height: 140%;
    color:white;
    padding:0em;
}

footer figure img {
    width: 200px;
}

footer p {
    width: 40%;
    padding: 0 9em;
}

footer div {
    padding:0;
    margin:0em;
}

footer div h1 {
    padding: 0em 0;
    font-weight: 600;
    font-size: 12pt;
}

footer ul li {
    list-style: none;
    text-align: left;
    line-height: 100%;
    padding:0;
}

footer ul li a {
    text-decoration:none;
    color:white;
    font-size: 10pt;
}

footer ul li a:hover {
    color:aqua;
}

@media all and (max-width:800px) {
        
/*Responsive del header*/
    

 
/*Responsive del footer*/
    
footer {
    flex-direction: column;
    font-size: 10pt;
    }

footer div h1 {
    font-size: 11pt;
    }
    
footer ul li {
    list-style: none;
    text-align: center;
    line-height: 120%;
    padding-right:5em;
    margin:0;
}
        
}