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

body {
  font-family: "Roboto", sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: url("/images/1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  overflow-x: hidden;
}

.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 90%;
  width: 100%;
  animation: fadeInUp 1s ease-out;
}

.main-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1em;
  color: #e7a034;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

.description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer {
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer p {
  font-size: 0.9rem;
  margin: 0;
}

.footer a {
  color: #ff0000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .main-title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    margin-bottom: 1rem;
  }

  .footer {
    padding: 1rem;
  }

  .footer p {
    font-size: 0.8rem;
  }
}
