@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100&family=Outfit:wght@200&display=swap');

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: #FCFAFA;
  animation: fadeInUp 0.5s ease-out;
  
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  
  
  max-width: 90%;
  box-sizing: border-box;
  border-radius: 10px;
background: var(--Secundario-0, #FCFFFF);
box-shadow: 20px 0px 50px 0px rgba(247, 134, 179, 0.20), 0px 20px 50px 0px rgba(12, 189, 175, 0.20);

}

header {
    display: flex;
    
    min-height: 99px;
    padding: 16px 0px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
  border-radius: 10px 10px 0px 0px;
  box-sizing: border-box;
background: var(--Primario-0, #FFFCFD);
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  
}

.infocard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  box-sizing: border-box;
}

.cajatexto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

h2 {
  color: #030202;
  font-family: Montserrat;
  font-size: 21px;
  font-weight: 700;
  margin: 0;
}

h3 {
  color: #807979;
  font-family: Lora;
  font-size: 13px;
  font-weight: 400;
  margin: 0;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.buttons a {
  color: #413B3B;
  text-decoration: none;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #FFFCFD;
  
}

.buttons a:hover {
  background: #f0f0f0;
  color: #000;
}

.buttons a::selection {
    animation: swashOut 0.5s;

}

.codeby {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.codeby p, .codeby a {
  color: #BEBABA;
  font-family: "Nunito Sans";
  font-size: 8px;
  margin: 0;
  text-decoration: none;
}

.codeby a {
  color: #807979;
}

/* Responsive Design */
@media (max-width: 600px) {
  .profile-img {
    width: 80px;
    height: 80px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 12px;
  }

  .buttons a {
    width: 48px;
    height: 48px;
  }

  .card {
    padding: 10px;
  }
}
