#offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #c62828;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  z-index: 9999;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#offer-bar span {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-text 40s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

body {
  padding-top: 70px;
}