body {
  background-color: #14cc4a;
  color: white;
  font-family: Consolas, monospace;
  animation: slideBackground 15s linear infinite;
  }
  
  /* Define animation keyframes */
@keyframes slideBackground {
  0% {
    background-position: 0px 0px; /* Start position */
  }
  100% {
    background-position: 500px 0px; /* End position */
  }
}

  #map {
  position: fixed;
  height: 100%;
  width: 250px;
  
  right: 0px;
  top: 0px;
  padding-top: 0px;
  background-color: rgba(255,255,255,0.2);
}
#map img {
  position: relative;
  top: 0px;
  box-shadow: 0 0 0;
  background-color: ;
}