@import url(https://fonts.googleapis.com/css?family=Open+Sans);

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    font-family: 'Open Sans', sans-serif;
}
header{
    width: 100%;
    height: 55px;
    background: #333;
    color: #fff;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
}
.contenedor{
    width: 100%;
    margin: auto;
}
.logo{
     float: left;
     cursor: pointer;
}

h1{
    float: left;
	font-size: 22px;    

    
}


header .contenedor{
    display: table;
}

section{
    width: 100%;
    margin-bottom: 25px;
}

#bienvenidos{
    text-align: center;
    padding: 15px,0;5;
}


@media(min-width:1024px){
    .contenedor{
        width: 1000px;
    }
}

@media(max-width:500px){
    .contenedor{
        width: 300px;
    }
    h1{
    font-size: 20px; 
    }
    
}
@media(max-width:350px){
    .contenedor{
        width: 320px;
        high: 620px;
     }
     
     .contenedor p{
    	font-size: 12px; 
    	}
     .contenedor h1{
    	font-size: 22px; 
    	}
      .contenedor h2{
    	font-size: 8px; 
    	}
 .contenedor h3{
    	font-size: 12px; 
    	}
.contenedor h5{
    	font-size: 2px; 
    	}

	

}