@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.language-animate {
    animation: fadeIn 2s infinite alternate;
}

#clickMe {
    display: none; /* Initially hide the button */
}

#clickMe {
position: absolute;
  left: 10%;
  transform: translateX(-50%);
  top: 50%;
  cursor: pointer;
    width: 60px;
    height: auto;
}