@font-face {
	font-family: 'Charm-Bold';
	src: url('./font/Charm-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Charm-Regular';
    src: url('./font/Charm-Regular.ttf') format('truetype');
}

.depth {
    color: black;
    font: bold 4em Arial, sans-serif;
    position: relative;
	display: flex !important;
}

.depth:before, .depth:after {
    content: attr(title);
    color: rgba(255,255,255,.1);
    position: absolute;
}


.depth:before { top: 1px; left: 1px }
.depth:after  { top: 2px; left: 2px }

.parallax {
	overflow: hidden;
	width:135%;
	background-image: url(./images/background.jpg);
	background-repeat: no-repeat;
	background-position: -10px -10px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#map {
	height: 400px;
	width: 100%;
	border: var(--bs-success-bg-subtle) 3px solid;
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* 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: var(--bs-success-bg-subtle); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  width: 60px;
  font-weight: bold;
  
  transform: rotate(-180deg);
  /* Safari */
  -webkit-transform: rotate(-180deg);
  /* Firefox */
  -moz-transform: rotate(-180deg);
  /* IE */
  -ms-transform: rotate(-180deg);
  /* Opera */
  -o-transform: rotate(-180deg);
  /* Internet Explorer */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=6);
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}