body {
  margin: 0;
  padding: 0;
}

.floating-button {
  position: fixed;
  right: 20px;
  /* Adjust as needed */
  bottom: 80px;
  /* Adjust as needed */
  z-index: 1000;
  /* Ensures it stays on top */
}

.floating-button a img {
  width: 180px;
  /* Adjust size as needed */
  height: 120px;
  /* Adjust size as needed */
  /*border-radius: 50%;*/
  /* Makes the button circular */
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
  /* Adds a shadow effect */
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
}

.floating-button a img:hover {
  transform: scale(1.1);
  /* Slightly enlarges the button on hover */
}
