body {
 
  font-family: 'Poppins';
  margin: 0;
  padding: 0;
  z-index: 1;
  position: relative;
}

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


h2,p {
  margin-bottom: 20px;
  color: #ffffff;
}

.skill-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff44;
  color: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  margin: 8px 8px 0 0;
  font-size: 18px;        /* Increased font size */
  font-weight: 600;       /* Make it bolder */
  transition: 0.3s;
}

.skill-badge:hover {
  background-color: #0dcaf0;
  color: black;
  transform: scale(1.05);
  cursor: default;
}

.card:hover {
  transform: scale(1.03);
  transition: all 0.3s ease-in-out;
}


img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
