/* Add here all your CSS customizations */

@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');

.special-font {
  font-family: 'Carter One', cursive;
}

.mayusculas {
  text-transform: uppercase;
}

.sombra-azul {
  text-shadow: 1px 1px 2px #06c;
}

.sombra-blanca {
  text-shadow: 1px 1px 1px #FFF;
}

.sombra-negra {
  text-shadow: 1px 1px 1px #000;
}

.sombra-gris {
	text-shadow: 1px 1px 1px #7c7c7c;
  }

.parallax-overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.7) 100%) repeat scroll 0 0 rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
