.menu-link {
  display: flex;
  align-items: center;
}
.menu-text {
  display: flex;
  align-items: center;
  gap: 0.4rem; 
}
#langSwitch {
  appearance: none;
  background: #242423;
  width: 0.9rem;
  height: 0.9rem;
  cursor: pointer;
  border-radius: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.41);
  position: relative;
}
#langSwitch:checked::after {
  content: "\f00c";  
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#langSwitch:checked {
  background: #5784b7;
}
