@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

* {
	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	background-color: #000f28;
}

#wrapper {
	width: 100%;
	margin: auto;
	padding: 25px;
	display: flex;
	flex-direction: column;
	background-image: url(../img/fondo_1.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	/*height: calc(100vw * 1.78214286);*/
	max-width: 560px;
}

h1 {
	font-size: 0;
	background-image: url(../img/logo_kirno.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 150px;
}

.text {
	color: white;
	font-size: 22px;
	margin-top: 60px;
	max-width: 920px;
	font-weight: 200;
	text-align: center;
	background-color: #2b4ee254;
    padding: 15px;
    border-radius: 20px;
}

footer {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 55px 0;
}

footer p {
	color: white;
	font-size: 19px;
	text-align: center;
}

footer ul {
	display: flex;
	flex-direction: row;
	list-style: none;
	justify-content: space-around;
	margin-top: 50px;
}

footer ul li a {
	font-size: 0;
	padding: 35px;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
}

footer ul li:nth-child(1) a {
	background-image: url(../img/redes/correo.png);
	
}

footer ul li:nth-child(2) a {
	background-image: url(../img/redes/whatsapp.png);
}

footer ul li:nth-child(3) a {
	background-image: url(../img/redes/facebook.png);
}

footer ul li:nth-child(4) a {
	background-image: url(../img/redes/twitter.png);
}


@media screen and (min-width: 560px) {

	#wrapper {
		background-image: url(../img/fondo_2.jpg);
		max-width: 1038px;
	}
}



@media screen and (min-width: 900px) {

	footer {
		flex-direction: row;
		justify-content: space-between;
	}

	.text {
		font-size: 30px;
		text-align: left;
	}

	footer ul {
		margin-top: 0;
	}

	h1 {
		background-position: left;
	}

	#wrapper {
		background-image: url(../img/fondo_3.jpg);
		max-width: 1960px;
	}
}


@media screen and (min-width: 1200px) {
	
	.text {
		font-size: 35px;
	}

	footer {
		margin-top: 150px;
	}

	footer p {
		font-size: 29px;
	}
	
	#wrapper {
		padding: 25px 7%;
	}
}







