@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);

* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
	margin: 0;
	padding: 0;
	background-color: white;

}
	
header{
    width: 100%;
    height: 50px;
    background: #333;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor{
    width: 98%;
    margin: auto;
}

h1 {
    float: left;
}

header .conenedor {
    display: table;
    
}

section {
    width: 100%;
    margin-bottom: 25px;
}

#bienvenidos {
    text-align: center;
    
}

@media (min-width:480px) {
    .contenedor {
        width: 380px;
    }
}

@media (min-width:768px) {
    .contenedor {
        width: 700px;
    }
}


@media (min-width:1024px) {
    .contenedor {
        width: 1200px;
    }
}

