body{
	background-color: #efefef;
	font-family: 'Rubik', sans-serif;
	margin: 0px;
	color: #034d6c;
}

a{
	transition: color 0.3s ease;
	font-family: 'Rubik', sans-serif;
	color: #034d6c;
	text-decoration: none;
	font-weight: 700;
	
}

a:hover{
	color: #f84f07;
}


html body header{
	display: flex;
	justify-content: space-between;
	background-color: #fff;
	box-shadow: 3px 0 5px #aaa;
	padding:15px 30px;
	position: relative;
	z-index: 2;
}

header .logo{
	font-size: 20px;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	display: flex;
	align-items: center;
}

html body nav ul{
	list-style-type: none;
	font-size: 16px;
	
}

html body nav ul li {
	display: inline-block;
}

html body nav ul li a {
	padding: 0 15px;
	
}

img {
	width: 450px;
}

.hero {
	position: relative;
	z-index: 1;
	display: flex;
	background-color: #fff;
	padding: 20px 50px;
	justify-content: center;
}

.hero .hero-content {
	width: 960px;
	display: flex;
	flex-direction: row;
}

.hero h1{
	font-family: 'Rufina', sans-serif;
}

.left{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*con esto vamos a poner el diseño adaptativo*/
@media (max-width: 960px) {
	.hero .hero-content {
		display: flex;
		flex-direction: column;
	}
}