
    html {
      scroll-behavior: smooth;
    }
    body {
      background: #0f0f0f;
      color: #fff;
    }
    .glow {
      text-shadow: 0 0 10px #00f6ff, 0 0 20px #00f6ff;
    }
    .glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    @keyframes gradient {
      0%, 100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }
    .animate-gradient {
      background-size: 200% 200%;
      animation: gradient 6s ease infinite;
    }
    .animate-fade-in {
      opacity: 0;
      animation: fadeIn 1s forwards;
    }
    .animate-fade-in.delay-300 {
      animation-delay: 0.3s;
    }
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }
    .skill-box {
      background-color: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fde68a;
      border-radius: 0.75rem;
      padding: 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      box-shadow: 0 4px 24px 0 rgba(0,0,0,0.15);
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .skill-box:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 24px 0 rgba(253, 230, 138, 0.3);
    }
    .skill-chip {
      background-color: #27272a;
      border: 1px solid #eab308;
      color: #fde68a;
      font-size: 0.875rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      text-align: center;
      box-shadow: 0 4px 12px 0 rgba(0,0,0,0.15);
      transition: background 0.3s, color 0.3s;
      cursor: pointer;
    }
    .skill-chip:hover {
      background-color: #fde047;
      color: #18181b;
    }



    /* From Uiverse.io by Praashoo7 */ 
.main {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.up {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.down {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}

.card1 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 90px 5px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.instagram {
  margin-top: 1.5em;
  margin-left: 1.2em;
  fill: #cc39a4;
}

.card2 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 90px 5px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.twitter {
  margin-top: 1.5em;
  margin-left: -.9em;
  fill: #03A9F4;
}

.card3 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 5px 90px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.github {
  margin-top: -.6em;
  margin-left: 1.2em;
}

.card4 {
  width: 90px;
  height: 90px;
  outline: none;
  border: none;
  background: white;
  border-radius: 5px 5px 90px 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: .2s ease-in-out;
}

.discord {
  margin-top: -.9em;
  margin-left: -1.2em;
  fill: #8c9eff;
}

.card1:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #cc39a4;
}

.card1:hover .instagram {
  fill: white;
}

.card2:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #03A9F4;
}

.card2:hover .twitter {
  fill: white;
}

.card3:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: black;
}

.card3:hover .github {
  fill: white;
}

.card4:hover {
  cursor: pointer;
  scale: 1.1;
  background-color: #8c9eff;
}

.card4:hover .discord {
  fill: white;
}

  @keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes wiggle {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
  }

  .animate-spin-slow {
    animation: spin-slow 10s linear infinite;
  }

  .animate-wiggle {
    animation: wiggle 3s ease-in-out infinite;
  }

@keyframes fadeIn {
  to { opacity: 1; transform: none; }
}
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease forwards;
}
.animate-fade-in.delay-300 {
  animation-delay: 0.3s;
}

