@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&display=swap');

body {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.skills-section {

  animation: helo 1s 0.9 ease-out;

  width: 90%;
  max-width: 900px;
  background: #080808;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(14, 14, 14, 0.1);
  padding: 20px;
  text-align: center;
}

.skills-section h2 {
  font-weight: bold;

  margin-bottom: 15px;
  font-size: 44px;
  color: #e4e3ff;
   border-bottom: 3px solid red; 
  display: inline-block;
  font-weight: bold;
}

.skills-container {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.skill-box {

  border: 3px solid aqua;

  background: #ffffff;
  border-radius: 10px;

  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}


.skill-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 15px 3px rgb(4, 229, 249);
}

.skill-box i {
  height: 130px;
  width: 170px;
  font-size: 76px;
  color: #6c63ff;
  margin-bottom: 10px;
}

.skill-title {
  font-size: 33px;
  font-weight: bold;
  color: #333;
}

@keyframes helo {
  from {
    opacity: 0;
    transform: translatex(100px);
  }

  to {
    opacity: 1;
    transform: translatex(0);
  }
}

