

  #floatingButton {
    position: fixed;
    background-image: url("../img/button.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    border: none;
    border-radius: 5px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    text-align: center;
    cursor: pointer;
    top:250px;
    right:0;
    z-index: 9999;
  }

  #floatingButton:active {
    background-color: #2980b9;
  }
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    border: 1px solid #ccc;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .popup-content {
    text-align: center;
  }

  .popup-content p {
    margin-bottom: 10px;
  }

  .popup-content button {
    padding: 10px 20px;
    font-size: 16px;
  }

  .popup-content .close {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
  }

  .popup-content .close:hover {
    color: #f00;
  }