@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(info.css);
@import url(pie.css);
@import url(contenido.css);
@import url(galeria.css);

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

body {
    font-family: 'Open Sans', sans-serif;
}
header {
    width: 100%;
    height: 75px;
    background: rgb(12, 12, 12);
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor {
    width: 95%;
    margin: auto;
}
h1 {
    float: left;
    text-align: center;
    font-size: 35px;
    line-height: 75px;
}
header .contenedor {
    display: table;
}
#bienvenidos {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    padding: 3px;
    margin-top: 40px;
}
.nosotros {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding: 15px;
    display: block;
    text-align: justify;
    width: 80%;
    margin: 20px auto 20px auto;
}

.leer-mas{
	text-decoration: none;
	border: 1px solid #006699;
	padding: 20px 20px 10px 20px;
	margin-bottom: 10px;
}

.leer-mas:hover{
	background: #006699;
	color: #fff;
	transition: background 1s, color 1s;
}