h1 {
  margin-top: 200px;
}

h2 {
  margin-bottom: 200px;
}

p {
  font-size: 30px;
  width: 50vw;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: justify;
}

.p1 {
  -webkit-animation: text-focus-in 1s 0.5s ease both;
  animation: text-focus-in 1s 0.5s ease both;
}

.p2 {
  -webkit-animation: text-focus-in 1s 4s ease both;
  animation: text-focus-in 1s 4s ease both;
}

.p3 {
  -webkit-animation: text-focus-in 1s 7s ease both;
  animation: text-focus-in 1s 7s ease both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-8-27 2:18:29
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation text-focus-in
 * ----------------------------------------
 */
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }

  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@media only screen and (max-width: 710px) {
  p {

    font-size: 20px;
    width: 90vw;
  }

  h1 {
    margin-top: 100px;
  }

  h2 {
    margin-bottom: 100px;
  }
}