JSFiddle - React, Tailwind, and code Playground
by Cameron Bernhardt
CSS
body {
background-color: black;
color: white;
text-align: center;
margin-top: auto;
margin-bottom: auto;
font-family: Courier;
background-image: url(http://i952.photobucket.com/albums/ae9/dgpimp777/skin_fetch.gif)
}
JavaScript
document.getElementsByTagName("h1")[0].style.marginTop = document.height/3 + "px";
setInterval(function(){
$("h1").animate({
"color": "#0F0",
"font-size": "50px",
}, 500).animate({
"color": "white",
"font-size": "25px",
}, 500);
}, 1000);