#back-to-top {

    display: none;

    position: fixed;

    bottom: 30px;

    right: 30px;

    z-index: 9999;

    background: var(--accent);

    color: #000;

    padding: 12px 15px;

    border-radius: 10%;

    text-align: center;

    font-size: 22px;

    cursor: pointer;

    transition: background 0.3s ease;

}

#back-to-top:hover {

    background: #555;

}

