*{
	padding: 0;
	margin: 0;
	font-family: 'helvetica';
}

body{
	height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.background{
	width: 100vw;
}

.content{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header{
	height: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

footer{
	height: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title{
	width: 80%;
	font-size: 55px;
	color: white;
	text-align: center;
	margin-bottom: 30px;
	text-shadow: 2px 2px 5px black;
}

.text{
	width: 50%;
	text-align: center;
	color: white;
	text-shadow: 2px 2px 5px black;
	font-size: 26px;
}

.logo img{
	height: 40px;
	width: auto;
	margin: auto;
}

.descarga{
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px white;
	border-radius: 15px;
	padding: 10px 20px;
	background-image: linear-gradient(135deg, #02E8A3, #6600FF, #FECCA3, #02E8A3, #6600FF, #02E8A3, #FECCA3);
	background-size: 500%;
	animation: fanimado 15s infinite;
	/*background-color: rgba(0,0,0,0.5);*/
}

@keyframes fanimado{
	0%{
		background-position: 0% 50%;
	}
	50%{
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.descarga h3{
	font-size: 20px;
	margin-right: 20px;
	color: white;
	text-shadow: 2px 2px 5px black;
	font-style: italic;
}

.descarga img{
	height: 60px;
	width: auto;
	margin: auto;
	border-left: solid 1px white;
	padding-left: 20px;
}
.descarga img:hover{
	transform: translateX(3px);
	transition: all ease 0.5s;
}




@media (max-width: 768px) {

	body{
		background-image: url(../img/fondo-movil.jpg);
		background-repeat: no-repeat;

	}
	.main{
		height: 40vh;
		width: 80%;
	}
	.title{
		font-size: 32px;
	}
	.text{
		width: 90%;
		font-size: 22px;
	}
	.background{
		display: none;
	}
	footer{
		width: 80%;
		margin: auto;
	}
	.descarga{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.descarga h3{
		margin: auto;
		text-align: center;
		margin-bottom: 20px;
	}
	.descarga a{
		width: 80%;
		margin: auto;
	}
	.descarga img{
		border: none;
		padding: 0;
		width: 100%;
		height: auto;
		margin: auto;
	}
}