body{
  text-align: justify;
  margin: 0%;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;  font-weight: 100;
}


/* TITULOS */

h1{
    font-size: 3rem;
    text-align: center;
    padding: 50px 0px 0px 0px;
    font-weight: 100;
}

h2{
    font-size: 2rem;
    text-align: center;
    padding: 0px;
    font-weight: 700;
}


/* TEXTO */

p{
  
    text-align: justify;
    font-size: 1.5rem;
    padding: 20px;
}



/* ========================= */
/* ANIMACIONES */
/* ========================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.15);
  }
  
  to {
    opacity: 1;
       transform: scale(1);
  }
}


/* ========================= */
/* SCROLL ANIMATIONS */
/* (Chromium browsers) */
/* ========================= */


img{
  view-timeline-name: --image;
  view-timeline-axis: block;
  animation-timeline: --image;
  animation-name: fadeIn;
  animation-range: entry 25% cover 40%;
  animation-fill-mode: both;
}





p .animado{
  view-timeline-name: --text;
  view-timeline-axis: block;
  animation-timeline: --text;
  animation-name: textFade;
  animation-range: entry 5% cover 10%;
  animation-fill-mode: both;
}