body {
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	font-size: 16px;
}

main {
	height: calc(100vh - 160px);
	background-image: url('../images/fondo.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
	main .container {
		height: 100%;
		position: relative;
	}
		.logo {
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
		}

footer {
	padding: 25px 0;
	margin-top: 6px;
	text-align: center;
	background-color: #c62332;
}
	h1{
		font-size: 17px;
		font-weight: bold;
		color: #fff;
	}
	footer p{
		position: relative;
		text-align: left;
		padding-left: 40px;
		margin: 10px 0;
	}
	footer p i {
		position: absolute;
		left: 0;
	}
	footer p a {
		color: #fff;
		transition: all 200ms ease-in-out;
	}
		footer p a:hover {
			color: #8F8F8F;
			text-decoration: none;
		}

@media(max-width: 991px) {
	main {
		height: calc(100vh - 144px);
	}
}

@media(max-width: 767px) {
	main {
		height: calc(100vh - 196px);
	}
	.logo {
		width: 400px;
	}
	footer p {
		display: block;
		margin-bottom: 10px;
	}
}

@media(max-width: 479px) {
	main {
		height: calc(100vh - 196px);
		min-height: 350px;
	}
	.logo {
		width: 280px;
	}
	footer p {
		display: block;
		margin-bottom: 10px;
	}
}