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

body {
  font-family: Arial, sans-serif;
  background: black;
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>🚀</text></svg>") 16 0, auto;
}


.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("pic.png") repeat-x;
  animation: scrollBG 30s linear infinite;
  background-size: contain;
  opacity: 0.5;
  z-index: -1;
}


header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 10;
}


header .center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}


.logo {
  display: block;
  height: auto;
}


.left-logo {
  width: 160px;
}

.center-logo {
  width: 180px;
}

.right-logo {
  width: 160px;
}


.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 3rem;
  letter-spacing: 5px;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 60px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.btn {
  background: transparent;
  border: 2px solid white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #8a8484;
  padding: 15px 60px;
}


@media (max-width: 768px) {
  .left-logo,
  .right-logo {
    width: 130px;
  }

  .center-logo {
    width: 150px;
  }

  h1 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}


@media (max-width: 480px) {
  .left-logo,
  .right-logo {
    width: 100px;
  }

  .center-logo {
    width: 120px;
  }
}


@keyframes scrollBG {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
