 .telegram-button {

    position: fixed;

    bottom: 220px;

    right: 20px;

    width: 43px;

    height: 43px;

    background-color: lightblue;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

    cursor: pointer;

    transition: background-color 0.3s ease;

  }

  .telegram-button:hover {

    background-color: rgba(0, 136, 204, 0.5);

  }

  .telegram-button svg {

    width: 30px;

    height: 30px;

    transition: transform 0.3s ease;

  }

  .telegram-button:hover svg {

    transform: rotate(360deg);

  }