.menu{
    background: -webkit-linear-gradient(-90deg, rgba(255,255,255,1) 0, rgba(102,102,102,1) 100%);
  background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0, rgba(102,102,102,1) 100%);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0, rgba(102,102,102,1) 100%);
  background-position: 50% 50%;
}

.fuente1{
	font-family: hammersmith-one, sans-serif;
}
.fuente2{
	font-family: cantarell, sans-serif;
}

.titulo{
	font-family: hammersmith-one, sans-serif;
	font-size: 1.2em;
}

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 12%;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}