/*Floating Back-To-Top Button*/
    #myBtn {
        position: fixed;
        bottom: 20px;
        float: right;
        right: 1%;
  /*      left: 93.75%;		*/
        max-width: 30px;
        width: 100%;
        font-size: 12px;
        border-color: rgba(85, 85, 85, 0.2);
        background-color: rgb(200,50,50);
        padding: .75px;
        border-radius: 4px;

    }
/*On Hover Color Change*/
    #myBtn:hover {
        background-color: #5555ff;
    }
