.skills-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px;
}

.skill {
  height: 300px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow);
  padding:15px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  background-color: rgba(255, 255, 255, 0.1)
}

.skill:hover {
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
}

.skill img {
  height: 225px;
  width: 225px;
  transition: all 0.2s linear;
}

.skill:hover img{
  transform: translateY(-10px)
}

.skill-heading h3 {
  text-align: center;
  font-size: 1.9em;
  color:var(--secondary-color)
}