div.JoinUsButton{
  position: fixed;
  top: 5PX;
  right: 1%;
  width: 188px;
  height: 40px;
  z-index: 10;
  font-size: 18px;
  text-align: center;
  direction: ltr;
  padding-top: 10PX;
  color: white;
  letter-spacing: 7px;
  text-shadow:  0 0 20px #000 , 0 0 10px #000;


}
div.JoinUsButton span:hover{
  
  text-shadow:  0 0 20px white , 0 0 10px white;
  cursor: pointer;


}
/* 
.joinButt{
  width: 180px;
  border: solid white 1px;
  box-shadow: 0 0 1px white, 0 0 5px rgb(0, 0, 0);
  text-shadow: 0 0 1px white, 0 0 5px rgb(0, 0, 0);
  border-radius: 15px ;
  height: 70px;
  background-color: transparent;
  z-index: 10;
  color: white;
   bottom: 50px;
    padding-bottom: 0px;
    font-size: 20px;
}

.joinButt:hover{
  cursor: pointer;
  box-shadow: 0 0 5px white, 0 0 5px white;
  text-shadow: 0 0 5px white, 0 0 5px white;
} */

/* 
.joinButt {
  position: relative;
  bottom: 300px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px transparent;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  z-index: 50;
  
}


.joinButt:hover {
  transform: scale(1.05);
  border-color: #fff9;
} */


.joinButt {
  position: fixed;
  bottom: 150px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: transparent;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 22px;
  cursor: pointer;
  z-index: 30;
  width: 180px;
  font-family: 'ISF bold';
}


.joinButt:hover {
  transform: scale(1.05);
  border-color: #fff9;
  padding-bottom: 10px;
}

.joinButt:hover .icon {
  transform: translate(4px);
}

.joinButt:hover::before {
  animation: shine 3s ease-out infinite;
}

.joinButt::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}



@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}