@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-mono {
    font-family: "Roboto Mono", monospace !important;
}

.skill-icon {
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.15);
  cursor: default;
  transition: transform 0.3s ease;
}

.skill-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.3);
}

/* Positioning skills in a circular pattern around avatar */
.skill-js {
  top: 20%;
  left: 5%;
}

.skill-react {
  top: 10%;
  right: 10%;
}

.skill-node {
  bottom: 20%;
  right: 15%;
}

.skill-express {
  bottom: 15%;
  left: 15%;
}

.skill-mongo {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.avatar-border-wrapper {
  display: inline-block;
  padding: 8px; /* kapal ng border */
  border-radius: 50%;
  background: linear-gradient(45deg, #dc4c64, #ff6b81, #dc4c64);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.avatar-border-wrapper img {
  border-radius: 45%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

