@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-image: url("../img/fondo.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFFFFF;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 1.5vw;
}

a{
	color: #000000;
	font-weight: 300;
	font-size: 3vw;	
	letter-spacing: 0.3vw;
}

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

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

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

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

	.contenedor{
		padding-bottom: 10%;
		height: 90%;
	}
}

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

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

	.contenedor{
		padding-bottom: 20%;
		height: 80%;
	}
}