body{
	margin: 0px;
	font-family: 'Macondo', cursive;
}
h1{
	text-align: center;
}
section{
	display: flex;
	margin: auto;
	justify-content: space-around;
	align-items: center;
}
main form{
	display: flex;
	flex-direction: column;
	background-color: wheat;
	border-radius: 8px;
	padding: 1em;
	width: 40%;
}
h2{
	text-align: center;
}
main form div{
	margin-bottom: 1rem;
}
#princ{
	display: flex;
	width: 100%;
	justify-content: space-around;
}
main input{
	border: none;
	background-color: wheat;
	border-bottom: 2px #a8840d solid;
}
main input:focus{
	border: none;
	border-bottom: 4px #a8840d solid;
}
textarea{
	display: block;	
	width: 100%;
	max-width: 100%;
}
main button{
	width: 100%;
	font-size: 2em;
	color: white;
	background-color: #a8840d;
	border: none;
	border-radius: 8px;
	font-family: 'Macondo', cursive;
}
#pc img{
	max-width: 50%;
	border-radius: 8px;
}
#movil{
	flex-wrap: wrap;
	width: 96%;
}
#movil img{
	width: 100%;
	border-radius: 8px;
}
#movil form{
	width: 100%;
	border-radius: 8px;
	margin-bottom: 1rem;
}
p{
	margin-left: 1rem;
}
@media (min-width: 1200px){
	#movil{
		display: none;
	}
	nav{
		width: 60%;
	}	
}
@media (max-width: 1199px) and (min-width: 576px){
	#movil{
		display: none;
	}
	#pc{
		width: 100%;
	}
	#princ input{
		width: 90%;
	}
	nav{
		width: 100%;
	}
}
@media (max-width: 575px) {
	nav{
		width: 100%;
	}
	#pc{
		display: none;
	}


} 
