#skills {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  /* background-color: black; */
  /* border: 1px solid yellow; */
  margin-top: 50px;
  padding-top: 65px;
}
.skills_flex {
  height: 30em;
}
.skills_flex {
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: space-between;
}
.frontend {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.backend {
  display: flex;
  justify-content: space-evenly;
  width: 52%;
  margin-left: 14em;
}
.backend_skills {
  width: 17.2%;
  height: 140px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 1px 8px #e6e6e6;
  margin-top: 1.5em;
  transition: 0.3s;
}
.backend_skills img {
  width: 60%;
  height: 40%;
  margin-top: 1em;
}
.version {
  display: flex;
  justify-content: space-around;
}
.hosting {
  display: flex;
  justify-content: space-evenly;
  width: 40%;
  margin-left: 18em;
}
.hosting_skills {
  width: 22%;
  height: 140px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 1px 8px #e6e6e6;
  margin-top: 1.5em;
  transition: 0.3s;
}
.hosting_skills img {
  width: 60%;
  height: 40%;
  margin-top: 1em;
}
.skills_logo_container {
  width: 9%;
  height: 140px;
  border: 1px solid white;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 1px 1px 8px #e6e6e6;
  margin-top: 1.5em;
  transition: 0.3s;
}
.skills_logo_container img {
  width: 60%;
  height: 40%;
  margin-top: 1em;
}
.backend_skills:hover,
.hosting_skills:hover,
.version:hover,
.skills_logo_container:hover {
  cursor: pointer;
  transform: scale(1.04);
}
.skill_title {
  color: white;
  font-size: 0.9em;
  margin-top: 1em;
}
h1 {
  color: white;
  text-align: center;
  font-size: 2em;
}
h2 {
  text-align: center;
  color: white;
  margin-top: 1em;
}

@media (max-width: 767px) {
  #skills {
    margin-top: 4.5em;
  }
  .skills_logo_container {
    width: 26%;
    height: 140px;
  }
  .skills_logo_container img {
    width: 60%;
    height: 40%;
    margin-top: 1em;
  }
  .backend,
  .hosting {
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-around;
  }
  .backend_skills,
  .hosting_skills {
    width: 26%;
    height: 140px;
  }
  .backend_skills img,
  .hosting_skills img {
    width: 60%;
    height: 40%;
  }
}
