/* Track */

/* Track */
::-webkit-scrollbar-track {
	background: #d7cbab;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: #a89f85;
	border-radius: 50px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: rgb(119, 119, 119);
	
  }
/* button and title styles ######### */
.title {
	font-family: 'font-4-btn-lbl-hdr-ttl';
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	font-size: 40px;
	text-align: center;
	text-shadow: 2px 2.5px 8px rgb(226, 203, 159);
	font-weight: 600;
	width: 60%;
	padding-top: 1.5%;
	margin: auto;
}
.btnContainer {
	letter-spacing: 0.7px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}
.homeBtn {
	font-family: 'font-4-btn-lbl-hdr-ttl';
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.5px;
	padding: 1%;
	margin: 0.75% 0;
	width: 25%;
	font-size: 38px;
	cursor: pointer;
	z-index: 10;
	box-shadow: 6px 6px 6px rgb(30, 30, 30) ;
	background-color: #f5f0df;
	border: 1px solid black;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.homeBtn:hover {
	background-color: #c7896e;
}


#homeCredit {
	text-align: center;
	text-shadow: 2px 2.5px 8px rgb(226, 203, 159);
	padding-top: 25px;
	font-size: 18px;
	color: black;
	font-weight: 600;
}
#mapCredit {
	text-align: center;
	text-shadow: 2px 2.5px 8px rgb(226, 203, 159);
	font-size: 22px;
	color: black;
	width: 80%;
	margin: auto;
	padding: 20px 10px;
	background-color:rgb(201, 173, 121);
	border-radius: 10px;
}

@media screen and (max-width: 1750px) {
	.title {
		font-size: 36px;
	}
	.homeBtn {
		font-size: 32px;
	}
}


@media screen and (max-width: 850px) {
	.title {
		font-size: 32px;
		width: 96%;
	}
	.homeBtn {
		margin: 2% 0;
		font-size: 28px;
	}

	#homeCredit {
		font-size: 16px;
	}
	
}

@media screen and (max-width: 425px) {
	.title {
		font-size: 22px;
	}
	.homeBtn {
		letter-spacing: 0.5px;
		margin: 2.5% 0;
		width: 40%;
		font-size: 22px;
	}

	#homeCredit {
		padding: 2.5%;
		font-size: 14px;
	}
	#mapCredit {
		width: 80%;
	}
}


