html, body { margin: 0; padding: 0; background-image: url('../images/bg-flight_dark.jpg'); background-size: cover;}
html { height: 100%; font-family: 'Gotham Narrow SSm 3r', Helvetica, Arial, sans-serif; font-size: 24px; color: #fff; }
body {
  background-color:transparent;
  min-height: 100%;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;
}

@media tv and (min-width: 1920px) and (orientation: landscape) {
  body {
    cursor: none;
  }
}

.scroll-left {
 height: 50px;
 white-space: nowrap;
 overflow: hidden;
 position: relative;
}
.scroll-left text {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 transform:translateX(100%);
 animation: scroll-left 200s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   { transform: translateX(100%); }
 100% { transform: translateX(-1500%); }
}
