.train-formations {
  overflow: hidden;
  }
.train-formations-near {
  height: 100px;
  }
html {
  width: 100%;
  }
body {
  border: 0;
  background-image: url("graphics/scenery-railway.png");
  background-repeat: repeat-x;
  margin-top: 0px;
  margin-left: 0;
  margin-right: 0;
  height: 100%;
  min-width: 1095px;
  display: flex;
  flex-shrink: 1;
  flex-direction: column;
  background-color: #ffccff;
  }
.moving-trains {
	white-space: nowrap;
	width: 100%;
        -moz-animation: marquee 10s linear infinite;
        -webkit-animation: marquee 10s linear infinite;
        animation: marquee 10s linear infinite;
      }
      @-moz-keyframes marquee {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
      @-webkit-keyframes marquee {
        0% {
          transform: translateX(100%);
        }
        100% {
          transform: translateX(-100%);
        }
      }
      @keyframes marquee {
        0% {
          -moz-transform: translateX(100%);
          -webkit-transform: translateX(100%);
          transform: translateX(100%)
        }
        100% {
          -moz-transform: translateX(-100%);
          -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
        }
      }
