h1, p {
  text-align: center;
  font-family: 'Courier New', Courier, monospace;

}

h1 {
  font-weight: bold;
  font-size: large;;
}

p {
  margin-top: 20px;
  font-size: medium;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;

}

body {
  background-color: seashell;
}

#paragraph1 {
  transition-delay: 1s;
}

#paragraph2 {
  transition-delay: 6s;
}

#paragraph3 {
  transition-delay: 9s;
  color: orangered;
  font-weight: bold;
}