@charset "utf-8";
/* CSS Document */

/* Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@300&display=swap');

body{
	margin: 0;
	background: #b0bdc2;
	padding: 0;
}

h1{
	color: #f7941d;
	font-family: 'Oswald', sans-serif;
	font-size: 30pt;
}
h3{
	color: #005dac;
	font-family: 'Oswald', sans-serif;
	font-size: 20pt;
}


a{
	text-decoration: none;
}


.section{
	/*width: 100%; margin: 0 !important;*/
	height: 100vh;
	display: flex;
	align-items: center;
}
.content{
	align-items: center;
	justify-content: center;
	display: flex;
	width: 100%;
}

.volver{
	font-size: 50px;
	margin: 10px;
	color: #fff;
}

.volver:hover{
	color: #f7941d;
}

.volver img{
	width: 150px;
}

@media (max-width:1300px){
	
	.volver{
		font-size: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 50px;
	}
	
	.volver i{
		margin: 50px;
	}
	
	.volver img{
		width: 250px;
	}
	
	.section{
		display: block;
		padding: 0;
		margin: 0;
		height: auto;
	}
	
	.content img{
		height: auto;
		padding: 0;
		margin: 0;
		margin: 50px 0;
	}
}