/*hoja de estilos CSS*/


@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900);
/* font-family: 'Oswald', sans-serif; */

/*font-family:'Roboto', sans-serif;*/
/* font-weight: 400; */
/* font-weight: 700; */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

html {
	height: 100%;
 }

body {
	background: url('fondo.jpg') no-repeat center center fixed;
	background-size: cover;
	height: 100%;
	width: 100%
	position: relative;
}

.nav2 {
  background-image: url(fondo.jpg) no-repeat;
	height: 100%;
	display: flex;
	flex-direction: row;
}

/* /////////////////// */

.contenedormenu{
	position: relative;
	display: flex;
	flex-direction: row;
	flex-grow: 1
}

.item{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	padding: 0px 5px;
  background-color: rgba(84, 90, 97, 0.53);
	flex-grow: 1;
	-webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  /*transition: all 1s ease-in-out;*/
	transition: all 0.3s ease 0s
	border: 5px solid transparent;
	border-right: 1px solid rgb(241, 241, 241)
}

.contenedormenu h2{
	padding: 5px 4px;
	font-family:'Roboto', sans-serif;
	font-weight: 700;
	font-size: 3em;
	color: rgb(255, 250, 247)
}

.item1{}
.item1:hover{background-color: #65C6BB;}

.item2{}
	.item2:hover{background-color: #F64747;}

.item3{}
	.item3:hover{background-color: #913D88;}

.item4{}
	.item4:hover{background-color: #F62459;}

.item5{}
	.item5:hover{background-color: #2574A9;}

.item6{border-right: none}
	.item6:hover{background-color: #66CC99;}



	@media (max-width:900px) and (min-width:700px) {
			.contenedormenu{
				position: relative;
				display: flex;
				flex-direction: column;
				flex-grow: 1;
			}
			.item{
				border-bottom: 1px solid rgb(241, 241, 241);
				border-right:none
			 }
	}


@media (max-width: 700px){
						.nav2{
							flex-direction:column;
							flex-direction:none
							}
						.contenedormenu{
							flex-direction:column
						 }
						.item{
							padding: 50px;
							border-bottom: 1px solid rgb(241, 241, 241);
							border-right:none
				     }
}
