* {
    margin: 0; padding: 0;
}

@font-face {
    font-family: 'lovers_quarrelregular';
    src: url('font/loversquarrel-regular-webfont.eot');
    src: url('font/loversquarrel-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/loversquarrel-regular-webfont.woff2') format('woff2'),
         url('font/loversquarrel-regular-webfont.woff') format('woff'),
         url('font/loversquarrel-regular-webfont.ttf') format('truetype'),
         url('font/loversquarrel-regular-webfont.svg#lovers_quarrelregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

#canvas {
    display: block;
}

#background {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
}

#message {
    position: absolute;
    bottom: 1vw;
    left:0px;
    /*width: 55%;*/
    text-align:center;
    word-wrap: break-word;
    color:#b71401;
    font-size: 10vw;
    text-shadow: 0px 0px 7px #b71401;
    font-family: 'lovers_quarrelregular';
    //background-color: rgba(0,0,0,0.25);

    display: inline-block;
    white-space: nowrap;
    animation: floatText 30s infinite linear;
    padding-left: 100%; /*Initial offset*/
}

@keyframes floatText {
  to {
    transform: translateX(-100%);
  }
}