JSFiddle - React, Tailwind, and code Playground

by Brodingo

HTML

<audio src="https://dl.dropboxusercontent.com/u/10864903/campfire.mp3" autoplay loop></audio>

CSS

html {
height: 100%;
background: -moz-linear-gradient(top, #302d09 0%, #a0aa14 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#302d09), color-stop(100%,#a0aa14));
background: -webkit-linear-gradient(top, #302d09 0%,#a0aa14 100%);
background: -o-linear-gradient(top, #302d09 0%,#a0aa14 100%);
background: -ms-linear-gradient(top, #302d09 0%,#a0aa14 100%);
background: linear-gradient(to bottom, #302d09 0%,#a0aa14 100%);
}

body {
    min-height: 100%;
    margin: 0;
    background-image: url(http://www.free-animations.co.uk/animals/horses/images/horse_98.gif);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}