body{
  opacity: 1;
  animation: fade 0.75s;
}

h1{
  animation: h1 0.50s !important;
}

@keyframes fade{
  from{
    opacity: 0;
  } to{
    opacity: 1;
  }
}

@keyframes h1{
  from{
    font-size: .9vw;
  } to{
    font-size: 33.6px;
  }
}

/*
    For Mobile And Or Tablet
*/
@media only screen and (max-width: 700px) {
    h1{
    animation: h1_b 0.50s !important;
    }

    @keyframes fade{
    from{
        opacity: 0;
    } to{
        opacity: 1;
    }
    }

    @keyframes h1_b{
    from{
        font-size: .9vw;
    } to{
        font-size: 24px;
    }
    }
}