body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--dark-color);
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.logo {
  font-size: 4rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
  color: var(--primary-color);
}

p {
  margin: 1rem 0 2rem;
  color: var(--light-color);
}

.social-buttons {
  display: flex;
  gap: var(--btn-spacing);
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s;
}

.instagram {
  background-color: #E1306C;
}

.linkedin {
  background-color: #0A66C2;
}

.github {
  background-color: #333;
}

.whatsapp {
  background-color: #25D366;
}

.btn:hover {
  opacity: 0.9;
}

.icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 90%;
    justify-content: center;
  }

  .icon {
    width: 24px;
    height: 24px;
  }
}