@import url(banner.css);
@import url(menu.css);
@import url(blog.css);
@import url(info.css);
@import url(footer.css);
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*tipo de fuente*/
body {
    font-family: 'Roboto', sans-serif;
}

header{
    width: 100%;
    height: 50px;
    background-color: #333;
    /* background-color: rgba(49, 47, 47, 0.9); */
    color: #fff;
    top: 0;
    left: 0;
    position: fixed;
    opacity: 0.9;
    z-index: 100;
}
.contenedor{
    margin: auto;
    width: 90%;/* ajustar el contenedor al ancho de pantalla */
}
header .contenedor{
    display: table;
}

section{
    width: 100%;
    margin-bottom: 30px;
}

#bienvenidos h2{
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

#bienvenidos p{
    text-align: justify;
    padding: 1%;
    font-size: 22px;
}