@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Sans+3:ital@0;1&display=swap');

html,body{
	background-color: #F9C1D0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 1.5vw;
}

h1{
	font-weight: 300;
	font-size: 3vw;	
	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%;
	}
}