/*Globales*/
body {
	margin: 0px;
	padding: 0px;
}
.main {
	width: 67%;
	margin: 80px auto 60px;
}
header {
	width: 100%;
	height: 50px;
	padding: 0px;
	margin: 0px;
	position: fixed;
	top: 0px;
}

.barraO {
	height: 40px;
	width: 100%;
	background-color: #313920;
}

.barraC {
	height: 10px;
	width: 100%;
	background-color: #ACC055;
	float: left;
}

.logo {
	width: 30%;
	margin: 30px auto;
	min-width: 320px;
}

.logo img {
	width: 100%;
}

.texto {
	font-family: arial, sans-serif;
	font-size: 17px;
	color: #ffffff;
	text-align: justify;
}

/*Botones*/

.btn {
	width: 100%;
	height: 35px;
	background-color: #313920;
	margin: 0px auto 0px auto;
	text-align: center;
	border: none;
	display: block;
	text-decoration: none;
	color: #ACC055;
	font-family: arial, sans-serif;
	padding-top: 15px;
}

.btn:hover{
	color: #fff;
	box-shadow: 0 3px 3px #000;
}



footer {
	width: 100%;
	background-color: #313920;
	bottom: 0px;
	position: fixed;
	height: 40px;
}

footer p {
	text-align: center;
	margin-top: 10px;
}

footer a{
	text-decoration: none;
	color: #ACC055;
	font-family: arial, sans-serif;
}

footer a:hover {
	color: #ffffff;
}

/*Estilos para tablet*/

@media screen and (min-width: 481px) and (max-width: 1121px) {
	header {
		width: 100%;
		position: fixed;
		top: 0px;
	}
	.main {
		width: 95%;
		margin: 100px auto 170px auto;

	}
	.btn {
		margin-bottom: 0px;
	}
}

/*Estilos para Mobile*/

@media screen and (max-width: 480px) {
	header {
		width: 100%;
		position: fixed;
		top: 0px;
	}

	.texto {
		font-size: 14px;
	}
	.main {
		width: 95%;
		margin: 100px auto 170px auto;
		min-width: 380px;
	}
	.logo {
		width: 60%;
		margin: 0px auto 30px auto;

	}
	.btn {
		margin-bottom: 30px;
	}
}