* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 600px;
  width: 100%;
}

.profile {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid #ff4d4d;
  padding: 5px;
  background: linear-gradient(45deg, #ff4d4d, #ff8533);
}

.profile-pic svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url(assets/imagen.jpg);
  background-size: cover;
  padding: 15px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff4d4d, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bio {
  color: #888;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-button {
  background: rgba(255, 77, 77, 0.1);
  border: 2px solid #ff4d4d;
  padding: 1rem;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.link-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 77, 77, 0.2);
  box-shadow: 0 5px 15px rgba(255, 77, 77, 0.2);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  color: #ff4d4d;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}
