* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  font-style: sans-serif;
  line-height: 1.2;
  font-family: times;
}

@font-face {
  font-family: times;
  src: url('Times New Roman.ttf');
}


body {
  overflow: hidden;
  height: 100%;
  animation: cloud 15s infinite alternate;
  font-family: times;
} 

p {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  font-family: times;
}

h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12%;
  text-align: center;
  letter-spacing: 20px;
  font-size: 6rem;
  padding-left: 2%;
  padding-bottom: 2%;
}

h2 {
  position: absolute;
  right: 10%;
  text-align: center;
  font-size: 2.5rem;
  bottom: 13%;
  text-align: center;
}

h3 {
  position: absolute;
  left: 10%;
  top: 10%;
  text-align: center;
  font-size: 1rem;
  bottom: 13%;
  text-align: center;
  letter-spacing: 20px;
}

h4 {
  position: absolute;
  left: 10%;
  bottom: 15%;
  text-align: center;
  font-size: 2rem;
  bottom: 13%;
  text-align: center;
}

@keyframes cloud {
  0% {background-color:transparent;}
  25%{background-color:transparent;}
  50%{background-color:dimgrey;}
  75%{background-color:transparent;}
  100% {background-color: dimgrey;}
}

@media screen and (max-width: 500px) {

  h1 {
    font-size: 3rem;
    bottom: 5%;
  }

  h2 {
    font-size: 3rem;
    bottom: 5.5%;
  }

  h3{
    font-size: 5rem;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

  h4 {
    font-size: 3rem;
    bottom: 5.5%;
  }