.back-to-top {
    position: fixed; /* Фиксированное положение */
    bottom: 30px;    /* Отступ от низа */
    right: 30px;     /* Отступ от правого края */
    width: 50px;
    height: 50px;
    background-color: #ff6f61; /* Цвет кнопки (можете поменять) */
    color: #ffffff;            /* Цвет стрелки */
    border-radius: 50%;        /* Круглая форма */
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;         /* Чтобы стрелка была по центру по вертикали */
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;             /* Чтобы была поверх всех блоков */
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: #333333; /* Цвет при наведении */
    color: #ffffff;
    text-decoration: none;
}