
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 999;
    width: 50px;
    height: 50px;
  }
  
  .floating-button a {
    text-decoration: none;
    color: white;
  }
  
  @media only screen and (max-width: 600px) {
    .floating-button {
      font-size: 14px;
      bottom: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
    }
  }
  
  @media only screen and (max-width: 844px) {
    .floating-button {
      font-size: 14px;
      bottom: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
    }
  }
  