body {
  background-image: url('images/GOONBA_GANG_BANNER.png');
}

.container {
  position: relative;
}

.moving-background {
  z-index: 1;
  background-image: url('images/GOONBA_GANG_BANNER.png');
  background-repeat: repeat-x;
  width: 100%;
  height: 130px;
  overflow: hidden;
  animation: slideRight 1s linear infinite;
}

@keyframes slideRight {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

.goonba-gang {
  z-index: 2;
  position: absolute;
  left: 1vw;
  top: 1vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 22em;
  animation: color-flash 0.01s infinite alternate;
}

a {
  text-decoration: none;
  animation: color-flash 0.01s infinite alternate;
}

@keyframes color-flash {
  0% {
    color: red;
  }
  100% {
    color: yellow;
  }
}
