
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url('https://fonts.googleapis.com/css?family=Courgette');
@import url(menu.css);
@import url(banner.css);
@import url(binvenidos.css);
@import url(blog.css);
@import url(infoFotos.css);
@import url(estiloLogin.css);
    
* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

/*llamamos a la fuente en el cuerpo del sitio */
body {
    font-family: 'Open Sans', sans-serif;
}

/*propiedades de encabezado*/
header {
    width: 100%;
    height: 50px;
    background: #333;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

/*propiedaddes del contenedor*/
.contenedor {
    width: 98%; 
    margin: auto;
}

/*------------------- estilo de botón 1

.boton {
border: 1px solid #2e518b; /*anchura, estilo y color borde*/
/*padding: 20px; /*espacio alrededor texto*/
/*background-color: #2e518b; /*color botón*/
/*color: #ffffff; /*color texto*/
/*text-decoration: none; /*decoración texto*/
/*text-transform: uppercase; /*capitalización texto*/
/*font-family: 'Helvetica', sans-serif; /*tipografía texto*/
/*border-radius: 50px; /*bordes redondos*/




.boton{
 width: 180px;
	background: #4091EC;
	padding: 10px;
	border: none;
	border-radius: 25px;

    align-self: flex-end;

    color: #fff;
	font-family: 'Open sans';
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.boton :hover{
    background: #3371B6;
}



/*encabezado como propiedad flotante*/
h1 {
    float: left;
}

h3 {
padding:25px 50px 25px 0px;
text-align: center;
    
}

/*encabezado como propiedad contenedor*/
header .contenedor {
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
}

footer .contenedor {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}



.copy {
    font-size: 20px;
}

.redesSociales {
    width: 100%;
    text-align: center;
    font-size: 35px;
}

.redesSociales a{
    color: #333;
    text-decoration: none;
}

@media (min-width:1024px){
    .contenedor{
        width: 1000px;
    }
}