#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 145px; /* Place the button at the bottom of the page */
  right: 40px; /* Place the button 30px from the right */
  z-index: 9999; /* Make sure it does not overlap */
  border: 0,5px; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #FFC400; /* Set a background color */
	border-color: #FFC400;
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding-top: 8px; /* Some padding */
	padding-bottom: 0px; 
  border-radius: 0; /* Rounded corners */
  font-size: 18px; /* Increase font size */
	text-transform: uppercase;
	font-family: trade-gothic;
	text-align: center;
}

#myBtn:hover {
  background-color: none; /* Add a dark-grey background on hover */
	color: black;  
}

@media screen and (max-width: 480px) {
  #myBtn {
    bottom: 30px; /* Weitere Anpassung der Platzierung bei sehr kleinen Bildschirmen */
    right: 10px; /* Weitere Anpassung der Platzierung bei sehr kleinen Bildschirmen */
    font-size: 16px; /* Noch kleinere Schriftgröße bei sehr kleinen Bildschirmen */
		padding-top: 6px;
		padding-bottom: 0px;
		padding-left: 6px;
		padding-right: 6px;
  }
}

@media screen and (max-width: 1024px) {
  #myBtn {
    bottom: 30px; /* Weitere Anpassung der Platzierung bei sehr kleinen Bildschirmen */
    right: 15px; /* Weitere Anpassung der Platzierung bei sehr kleinen Bildschirmen */
    font-size: 16px; /* Noch kleinere Schriftgröße bei sehr kleinen Bildschirmen */
		padding-top: 6px;
		padding-bottom: 0px;
		padding-left: 6px;
		padding-right: 6px;
  }
}

