#uptotop {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 10px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background: rgba(255,255,255,0.1); /* Set a background color */
    /*background: #f1f1f1;*/
    /*color: #324185;*/ /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 1px; /* Some padding */
    /*border: 1px solid;*/
    border-radius: 50px; /* Rounded corners */
    /*font-size: 18px;  Increase font size */
}

#uptotop {
    color: #f89406;
}

#uptotop:hover {
    color: #000; /* Text color */
    background: #fff;
    /*background: #000;*/ /* Add a dark-grey background on hover */
}