@charset "UTF-8";
@font-face {
	/* Texto */
	font-family: 'Texto';
	src: url('../typo/AvenirLTStd-Light.otf') format('opentype');
}
@font-face{
    /* Titulos */
    font-family: 'Titulo';
    src: url('../typo/AvenirLTStd-Heavy.otf') format('opentype');
}
/*
Verde: C0E513
Verde oscuro: 83991C
Rojo: 991305
Rojo claro: B22E20
Azul: 2A80EA
Morado oscuro: 600099
Morado claro: 9713E5
*/
body{
	margin: 0;
	font-size: 2.3vh;
	font-family: helvetica;
	background: white;
	overflow-x: hidden;
}
header{
	width: 100vw;
	position: fixed;
	background: rgba(255,255,255, 0.8);
	border-bottom: solid #83991C .2em;
	padding: 1em;
	overflow: hidden;
}
nav{
	text-align: center;
}
nav a{
	text-decoration: none;
	color:#991305;
	padding: 1.1em;	
	margin: 0;
	transition: 300ms;
}
#logo{
	height: 5vh;
	vertical-align: text-bottom;
}
nav a:hover{
	background: #83991C;
	color: white;
}