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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 600px; /* Increased from 500px */
  padding: 0 20px;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  margin-bottom: 60px;
}

/* Typography */
h1 {
  font-size: 2.25rem; /* Slightly reduced for better fit */
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  white-space: nowrap; /* Prevent line break */
}

.subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 32px;
}

/* Divider */
.divider {
  width: 64px;
  height: 4px;
  background-color: #2d2d2d;
  border-radius: 9999px;
  margin: 32px auto;
}

/* Social section */
.social-section {
  margin-top: 32px;
}

.social-section p {
  color: #666;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.social-icons a {
  color: #666;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #333;
}

.social-icons a[href*="facebook"]:hover {
  color: #1877f2;
}

.social-icons a[href*="instagram"]:hover {
  color: #e4405f;
}

.social-icons a[href*="github"]:hover {
  color: #333;
}

/* Footer */
footer {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.875rem;
  color: #888;
}

/* Responsive */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem; /* Ensure fit on smaller phones */
  }

  .subtitle {
    font-size: 1rem;
  }
}
