*{
	margin: 0;
	padding: 0;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
}

.contenedor{
    width: 100%;
    margin: auto;
    max-width: 1200px;
    margin: auto;

    /*flexbox*/
    display:flex;
	flex-flow:row wrap;

}

header {
  width: 100%;
  background: #244355;
  padding: 25px;

    /*flexbox*/
    display: flex;
    justify-content:space-around;
	align-items:center;

    flex-direction:row;
	flex-wrap:wrap;
}

header .logo{
  color: #f2f2f2;
  font-size: 38px;
}

header .logo a{
    font-family: 'Noto Sans HK', sans-serif;
    color:#fff;
	text-decoration: none;
	line-height:50px;
	text-shadow:-2px -2px 0 #000000, -2px 2px 0 #000000,  2px -2px 0 #000000 ,  2px 2px 0 #000000 ;

}

header nav{
    width: 50%;
    /*flexbox*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

header nav a{

    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    -webkit-transition:all 500ms ease;
    -o-transition:all 500ms ease;
    transition: all 500ms ease;
    /*flexbox*/
    flex-grow:1;

}

header nav a:hover{
   background: #f56f3a;
   border-radius: 50px;
}

.cajimg{
	width: 100%;
	margin-top: 2%;
	height:auto;
	margin: 20 auto;
	display: flex;
	flex-direction: center;
}
.textos{
    text-align: center;
		width: 80%;
		height: auto;
		position:absolute;
		top: 200px;
        margin-left: 5%;
}
h1{
	font-size: 50px;
	font-family: 'Noto Sans HK', sans-serif;
	color: white;
	text-shadow:-2px -2px 0 #000000, -2px 2px 0 #000000,  2px -2px 0 #000000 ,  2px 2px 0 #000000 ;
}

h3{
	font-size: 25px;
	font-family: 'Noto Sans HK', sans-serif;
	color: white;
	text-shadow:-2px -2px 0 #000000, -2px 2px 0 #000000,  2px -2px 0 #000000 ,  2px 2px 0 #000000 ;
}

#img1{
width: 100%;
display:flex;
height: 275px;
}


/*CELULAR*/
@media screen and (max-width:1024px){
    .contenedor{
        flex-direction: column;
    }
    header{
        flex-direction: column;
        padding: 0;
    }
    header .logo{
        font-size:40px;
        margin: 20px 0;
    }

    header nav{
        width:100%;
        font-size: 25px;
    }
/*termina el menu en celular*/
			.cajimg{
				width: 100%;
				flex-direction: center;
			}
			.textos{
				position: absolute;
				left: 2px;
				margin-left: 5px;
				height:auto;
				width: 95%;
			}
			.textos h1{
				font-size: 30px;
            }
        }
/*CELULAR*/
@media screen and (max-width:600px){
    .contenedor{
        flex-direction: column;
    }
    header{
        flex-direction: column;
        padding: 0;
    }
    header .logo{
        font-size:40px;
        margin: 20px 0;
    }

    header nav{
        width:100%;
        font-size: 25px;
    }
/*termina el menu en celular*/
			.cajimg{
				width: 100%;
				flex-direction: row;
			}
			.textos{
				position: absolute;
				left: 4px;
				margin-left: 10px;
				height:auto;
				width: 95%;
			}
			.textos h1{
				font-size: 30px;
            }
        }
