@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.Skills {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  background-image: url(../files/Group1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.Skills h1 {
  font-size: 45px;
}

.skilla {
  animation: slideIn 1s ease-out;
}
.langSkilla {
  animation: slideIn 1s ease-out; /* Adjust the duration and easing function as needed */
}

.skills-heading {
  margin-top: 5px;
}

.skilla {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
}

.langSkilla {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.skillText {
  margin: 20px;
  font-size: larger;
  /*  transition: margin-left 1s ease-out; */
}

.lang-skills-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 60%;
  margin: 20px;
}
.skills-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
