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

body {
  background: url("../images/background.png") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  color: #fff;
  text-align: center;
  flex-direction: column;
}

.logo {
  width: 50%;
  min-width: 300px;
  padding: 10px;
  margin-bottom: 30px;
  animation: fadeInUp 2s ease-out both;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  animation: fadeInUp 2s ease-out both;
  animation-delay: 0.5s;
}

.divider {
  width: 60%;
  max-width: 600px;
  height: 1px;
  background-color: #fff;
  margin: 20px auto;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 2s ease-out both;
  animation-delay: 1s;
}

p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 2s ease-out both;
  animation-delay: 1s;
}

.socials {
  margin-top: 15px;
}

.socials a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    width: 60%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }

  .logo {
    width: 70%;
  }

  .divider {
    width: 80%;
  }
}

/* Fade-in + slide-up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
