


button#myBtn {
  display: none; /* Hidden by default */
         bottom: 5%;  /* Place the button at the bottom of the page */
       right: 2%;  /* Place the button 30px from the right */
  position: fixed; /* Fixed/sticky position */
  z-index: 99; /* Make sure it does not overlap */

  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #A80625 ; /* #FF3D01 Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 5px 3px 5px 3px ; /* Some padding */
  border-radius: 6px; /* Rounded corners */
  font-size: 1em; /* Increase font size */
}



button#myBtn:hover {
  background-color: #9D011E; /* Add a dark-grey background on hover */
}


@media (min-width: 1800px)
{

   button#myBtn 
   {
         bottom: 5%;  /* Place the button at the bottom of the page */
       right: 10%;  /* Place the button 30px from the right */
    }

}


