@font-face {
	src: url("fonts/ChillChrip-Regular.ttf");
	font-family: "Chill Chrip";
	font-weight: 400;
}

html,body{
	background-color: #D86223;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	font-family: 'Chill Chrip', sans-serif;
	font-weight: 400;
	font-size: 1.5vw;
}

h1{
	font-size: 3vw;	
	text-transform: uppercase;
	letter-spacing: 0.3vw;
}

.contenedor{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;

	display: -webkit-flex;
	-webkit-flex-direction: column;
	-webkit-justify-content: center;
	-webkit-align-items: center;
}

.contenedor img{
	margin: 5vh 0;
	width: 30%;
	height: auto;
	object-fit: contain;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
	html, body{
		font-size: 2.5vw;
	}

	h1{
		font-size: 5vw;
		letter-spacing: 1vw;
	}

	.contenedor img{
		width: 50%;
	}
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
	html, body{
		font-size: 4vw;
	}

	h1{
		font-size: 7vw;
		letter-spacing: 2vw;
	}

	.contenedor img{
		width: 80%;
	}
}