html, body {
width: 100%;
height: 100%;
background: #76b852;
background: -webkit-linear-gradient(to left, #76b852 , #8DC26F);
background: linear-gradient(to left, #76b852 , #8DC26F);
overflow: hidden;
-webkit-font-smoothing: antialiased;
display: flex;
justify-content: center;
align-items: center;
}
h1 {
height: 100px;
}
h1 span {
position: relative;
top: 20px;
display: inline-block;
animation: bounce .3s ease infinite alternate;
font-family: 'Titan One', cursive;
font-size: 80px;
color: #FFF;
text-shadow: 0 1px 0 #CCC,
0 2px 0 #CCC,
0 3px 0 #CCC,
0 4px 0 #CCC,
0 5px 0 #CCC,
0 6px 0 transparent,
0 7px 0 transparent,
0 8px 0 transparent,
0 9px 0 transparent,
0 10px 10px rgba(0, 0, 0, .4);
}