@import url(menu.css);
@import url(footer.css);
@import url(contenedor-1.css);
@import url(arte.css);
@import url(botonup.css);



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: #e3e3e3;
  }
  

  header{
    width: 100%;
    height: 550px;
    background: #00B4DB;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(195, 100%, 35%, 0.151), hsla(191, 100%, 43%, 0.151)), url(../imagenes/arte/principal\ arte.jpg);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(195, 100%, 35%, 0.151), hsla(191, 100%, 43%, 0.151)), url(../imagenes/arte/principal\ arte.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /*background-size: cover;*/
    background-attachment: fixed;
    position: relative;    
} 

/* banner y textos principales*/

header .textos-header{
    display: flex;
    height: 450px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.textos-header h1{
    font-size: 80px;
    color: #fff;
    font-weight: bolder;
    text-shadow: 2px 2px 2px rgb(73, 73, 73);
}

.textos-header h2{
    font-size: 60px;
    font-weight: 300;
    color: #fff;
    text-shadow: 2px 2px 2px rgb(73, 73, 73);
}

.textos-header p{
    color: #1c2b66;
    padding: 15px 20px;
    background: hsla(60, 93%, 53%, 0.719);
    border-radius: 30px;
    margin-top: 6px;
}

.wave{
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width:900px){
    header{
        background-position: center;        
    }
    
    .textos-header h1{                  /*banner principal y textos*/
        font-size: 50px;
    }

    .textos-header h2{
        font-size: 35px;
    }

    .textos-header p{
        font-size: 11px;
    }
}

