#myBtn {
	background-image: url("../Images/top_buton.png");
	background-size: contain;
	background-repeat: no-repeat;
	width: 80px;
	height: 80px;
	display: none; /* Hidden by default */
	position: fixed; /* Fixed/sticky position */
	bottom: 20px; /* Place the button at the bottom of the page */
	right: 20px; /* Place the button 30px from the right */
	z-index: 999; /* Make sure it does not overlap */
	border: none; /* Remove borders */
	outline: none; /* Remove outline */
	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	font-size: 30px; /* Increase font size */
	border-radius: 10px;
	background-position: 0 0;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 0px 7px -2px;
	box-shadow: 0 0px 7px -2px;
}

#myBtn:hover {
	
	background-color: white;
}