@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(insta.css);
@import url(maps.css);
@import url(frame.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: sams-serif;
    background-color: #E5E5E5;
}

header { 
width: 100%;
height: 50px;
background: #216c9e;
color:#fff;

    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin:auto;
}

h1 {
    float: left;
}

header .contenedor {
    display: table;
}
section {
    width: 100%;
    margin-bottom: 25px;
}
#contenido1 {
    text-align: center;
}

footer .pie {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    background: #216c9e;
    color: #fff;
    position: absolute;
    width: 100%;
    margin:auto;  
}

.copy {
    font-size: 20px;
    margin-top: 5px;
}

.redes{
    width: 100%;
    text-align: center;
    font-size: 28px;
    margin-top: 5px; /*Damos una brece separacion entre el copy y las redes*/
}

.redes a {
    color: #333;
    text-decoration: none;
}
.redes a:hover { /*Colocamos un hover para los botones de redes para que den la sensacion de ser botones*/
    background: rgba(255,255,255,0.7);
}

@media (min-width:768px) {
    .redes {
        width: auto;
    }
    footer .pie {
        justify-content: space-between;
    }
    footer .copy { /* Damos margen superior e izquierdo al copy para que se vea mas centrado*/
    margin-top: 25px;
    margin-left: 10px;

    }
    footer .redes { /* Damos margen superior y derecho a las redes para que se vea mas centrado*/
        margin-top: 25px; 
        margin-right: 10px;

    }
    
}

@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
        footer .copy { /* Damos margen superior e izquierdo al copy para que se vea mas centrado*/
        margin-top: 25px;
        margin-left: 10px;

    }
    footer .redes { /* Damos margen superior y derecho a las redes para que se vea mas centrado*/
        margin-top: 25px; 
        margin-right: 10px;

    }

}