body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  color: #ffffff;
}

.container {
  
  padding: 2rem;
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
  text-align: center;

}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.5rem 0 0.2rem;
}

p {
  margin-bottom: 1.5rem;
  color: #333;
}

.link-buttons .btn {
  display: block;
  background-color: #1f1f1f;
  color: white;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  margin: 0.5rem 0;
  font-weight: 600;
  transition: background 0.3s;
}

.link-buttons .btn:hover {
  background-color: #333;
}

.socials {
  margin: 1.5rem 0;
}

.socials a {
  color: #000;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.socials a:hover {
  color: #555;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.footer-return {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.footer-return a {
  background-color: #444;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.footer-return a:hover {
  background-color: #666;
}


