/*Reset*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

/* Formato Listas */
li {
  list-style: none;
}

/* Formato Body */
body {
  margin: 1%;
  background-image: url(/Imagenes/19304.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Font Principal */
.fuente-principal {
  font-family: "Merriweather Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* Formato Footer */
footer {
  text-align: center;
}
footer section a:hover {
  transform: scale(1.15);
}

/* Formato Header */
header {
  text-align: center;
  background-color: white;
}
header h3 {
  background-color: white;
  margin-top: 1%;
}

.banner {
  height: 10rem;
}

.tracking-in-expand-fwd {
  animation: tracking-in-expand-fwd 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

/**
 * ----------------------------------------
 * animation tracking-in-expand-fwd
 * ----------------------------------------
 */
@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    transform: translateZ(-700px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
.slide-in-bck-top {
  animation: slide-in-bck-top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**
 * ----------------------------------------
 * animation slide-in-bck-top
 * ----------------------------------------
 */
@keyframes slide-in-bck-top {
  0% {
    transform: translateZ(700px) translateY(-300px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
/* Formato Navegador */
/* Formato Links */
a {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  transform: scale(1.15);
}

/* Formato Porfolio */
.elemento-porfolio {
  width: 20rem;
  height: 35rem;
  text-align: center;
}

.imagen-porfolio {
  width: 20rem;
  height: inherit;
}

/* Formato Sections*/
section {
  margin: 3%;
}
section div {
  margin-left: 12%;
  margin-right: 12%;
}
section div p {
  text-align: justify;
}/*# sourceMappingURL=styles.css.map */