@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Dosis", sans-serif;
  background: linear-gradient(135deg, #01062d, #040154, #0a0269);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 300px;
  margin-bottom: 25px;
}

h1 {
  font-size: 3rem;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ddd;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #0069e1;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.3rem;
  }
  p {
    font-size: 1rem;
  }
  .logo {
    width: 100px;
  }
}
