*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1;
}
h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: white;
}
.coverPage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../img/background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.coverPage:before {
  content: "";
  display: block;
  position: absolute;
  background: black;
  opacity: 0.5;
  width: 100vw;
  height: 100vh;
  top: 0;
}
.__coverPage-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white;
  height: 50%;
  width: 50%;
  z-index: 1000;
  text-align: center;
  opacity: 0.9;
  padding: 1em;
}
.__coverPage-content h1 {
  font-size: 4em;
  color: #8d0f11;

}
.__coverPage-content h2 {
  font-size: 2.2em;
  margin-bottom: 1.5em;
}
.__coverPage-content h3 {
  font-size: 1.6em;
  margin-bottom: 0.8em;
  text-transform: uppercase;

}
.__coverPage-content p {
  font-size: 0.95em;
  margin-bottom: 1.5em;
  line-height: 1.5;
  opacity: 0.7;
}
.socialIcon {
  margin-right: 10px;
  opacity: 0.7;
}
.socialIcon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  border: 2px solid white;
  border-radius: 50%;
  padding: 15px;
  height: 25px;
  width: 25px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.socialIcon i:hover {
  color: #f9a825;
  border-color: #f9a825;
}
@media screen and (min-width: 321px) and (max-width: 1023px) {
  .__coverPage-content {
    width: 100%;
  }
}

/* The Modal (background) */
.modal {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  /* Permanecer en el lugar */
  z-index: 1;
  /* encima */
  padding-top: 100px;
  /* Ubicación de la caja */
  left: 0;
  top: 0;
  width: 100%;
  /* Ancho completo */
  height: 100%;
  /* Altura completa */
  overflow: auto;
  /* Habilitar el desplazamiento si es necesario */
  background-color: rgb(0, 0, 0);
  /* Color alternativo */
  background-color: rgba(0, 0, 0, 0.4);
  /* Negro con opacidad */
}

/* Contenido Modal */
.modal-content {
  background-color: #f7f7f7;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 10px;
  color: #000;
}

/* Boton cerrar */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

button{
	font-size: 20px;
	margin: 10px;
}

.lascar{
  filter: drop-shadow(-2px 2px 15px rgba(0, 0, 0, 0.7));
  filter: contrast(3);
}