.btn {
    color: antiquewhite !important;
} 

#backToTopFix {
    position: fixed !important;
    bottom: 30px !important;
    right: 25px !important;
    background-color: var(--red-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    width: 50px !important;
    height: 50px !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
    z-index: 1000 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 2px 5px purple !important;
}

#backToTopFix:hover {
    /* background-color: #0056b3; */
    background-color: darkred !important;

}