/**** BACK TO TOP BUTTON ****/
.myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 1em; /* Place the button at the bottom of the page */
  right: 2em; /* 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-color: #d10565; /* Set a background color */
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0.6em; /* Some padding */
  border-radius: 0.5em; /* Rounded corners */
  font-size: 0.6em; /* Increase font size */
}

.myBtn:hover {
  background-color: #d10565;
  opacity: 1; /* Add a dark-grey background on hover */
}
