@font-face {
    font-family: fuente-regular;
    src: url("../fonts/Lato-Light.ttf") format("truetype"); /*Trae una fuente de un link externo*/
}
@font-face {
    font-family: fuente-bold;
    src: url("../fonts/Lato-Regular.ttf") format("truetype"); /*Trae una fuente de un link externo*/
}

/*GENERALES*/
body{
	margin: 0px;
	font-family: fuente-regular;
	font-size: 15px;
	background-color: rgb(247, 247, 247);
	color:#999999;
}

.imagen-fondo{
	position: fixed;
	width:100%;
	max-width: 800px;
	bottom: 0px;
	right: 0px;
	display: block;
	z-index: -1;
}

.fuente-bold{
	font-family: fuente-bold;
}

.texto-oscuro{
	color:#616163
}


.fuente-grande{
	font-size: 25px;
}

.margen-superior{
	margin-top:20px;
}

.boton{
	background-color: #8d1903;
	color:white;
	letter-spacing: 2px;
	display: inline-block;
	width: 250px;
	max-width: 100%;
	line-height: 40px;
	font-family: fuente-bold;
	cursor:pointer;
}

.boton:hover{
	background-color: #6d0903;
}

input{
	box-sizing: border-box;
	border: 1px solid #ddd;
	padding-left: 10px;
	padding-right: 10px;
	height: 30px;
	max-width: 100%;
	width: 250px;
}

