#languages-section {
  position: fixed;
  top: -150vh; /* Start completely off-screen at the top */
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  padding: 3vw;
  transition: top 0.5s ease-out; /* Smooth transition */
}

#languages-section #closing {
  display: flex;
  justify-content: flex-end;
}

#languages-section #closing span {
  cursor: pointer;
}

#languages-section #languages {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 10vw;
}

#languages-section #language {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* background-color: #79fd0e; */
  margin-top: 3vw;
  width: 15vw;
  line-height: 4vw;
}

#languages-section #languages h1 {
  font-size: 3vw;
}

#languages-section #language h2 {
  font-size: 2vw;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#languages-section #language h2:hover {
  color: #79fd0e;
  transform: translate(5px, 0);
}

@media (max-width: 700px) {
  #languages-section #language {
    width: 70vw;
    margin-top: 10vw;
  }
  #languages-section #languages h1 {
    font-size: 10vw;
    text-decoration:underline;
  }

  #languages-section #language h2 {
    line-height: 15vw;
    font-size: 8vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
}
