* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: Arial, sans-serif;
  position: relative;
}

.background-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.background-text {
  position: absolute;
  white-space: nowrap;
  font-size: 60px;
  color: red;
  opacity: 0.4;
  width: 200%;
  left: -50%;
  transform: rotate(-45deg);
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% { transform: rotate(-45deg) translateX(0); }
  100% { transform: rotate(-45deg) translateX(-50%); }
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  text-align: center;
  z-index: 2;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 20px;
}

.tagline {
  font-size: 24px;
  color: white;
}
