#home-section {
  height: 100vh;
}

#home {
  margin-top: 150px;
  color: white;
}

#greet-container {
  width: 500px;
}

#greet-container h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 40px;
}

#greet-container img {
  height: 50px;
  margin: -20px 5px 0 5px;
}

#img-container img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  transition: box-shadow 1s ease-in-out;
}


#tech-stack-container {
  margin-top: 50px;
}

.tech-stack {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  border-bottom: 2px solid white;
}

#skills {
  border: 2px solid white;
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 30px;
}

#skills button {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 16px;
  padding: 10px 10px 10px 10px;
  transition: background-color 0.3s linear;
}

#skills button.active {
  background-color: white;
  color: #050e25;
}

#language-logos-container, #framework-logos-container, #other-technology-logos-container {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  transition: position 0s, opacity 0.3s linear;
}

#language-logos-container.visible, #framework-logos-container.visible, #other-technology-logos-container.visible {
  position: static;
  opacity: 1;
}

.logo-container {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.1s;
}

.logo-container img {
  height: 47px;
}

#language-logos-container,
#framework-logos-container,
#other-technology-logos-container {
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

#socials {
  height: 280px;
  background-color: #07122d;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 10px 10px 10px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.521);
}

#socials img {
  height: 25px;
  filter: invert(100%) sepia(0%) saturate(25%) hue-rotate(70deg) brightness(108%) contrast(108%);
  transition: filter 0.2s linear;
}

#socials img:hover {
  filter: invert(55%) sepia(13%) saturate(2138%) hue-rotate(197deg) brightness(97%) contrast(91%);
}

@media screen and (max-width: 767px) {
   #home-section {
     height: auto;
   }

  #greet-container {
    width: auto;
  }

  #img-container img {
    height: 200px;
    width: 200px;
    margin-top: 16px;
  }

  #greet-container h1 {
    font-size: 30px;
  }

  #greet-container p {
    font-size: 12px;
  }

  #greet-container img {
    height: 35px;
  }

  .tech-stack {
    font-size: 1.325rem;
  }

  #language-logos-container,
  #framework-logos-container,
  #other-technology-logos-container {
    justify-content: center !important;
  }

  #skills button {
    font-size: 14px !important;
  }

  .logo-container {
    height: 60px;
    width: 60px;
    margin: 6px;
  }

  .logo-container img {
    height: 33px;
  }

}
