/*
 * Setting Global Font
 */
*{
	font-family: 'Noto Sans KR', sans-serif;

}

/*
 * Setting Responsive Background
 */
body{
background-image: url("../Images/mapbg2.jpg");
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
}

/*
 * Text Styling for Bold Title
 */
.boldtitle{
	font-family: 'Noto Sans KR', sans-serif;
	text-shadow: 2px 2px #000;
	font-size:70px;
}


/*
 * Button Styling for Index Page
 */
.homebutton{
	width: 230px;
	text-shadow: 0.2px 0.2px #000;

}

/*
 * Styling for Hunter Bounties
 */
.huntstyle{
	background-color:#727272 ;
	cursor: pointer;
	width: 400px;
	align-content: center;
	border-radius: 25px;
	margin-left: auto;
    margin-right: auto
}

/*
 * Styling for Hunter Leaderboard
 */
.leaderboard{
	background-color:#727272 ;
	cursor: pointer;
	width: 400px;
	align-content: center;
	border-radius: 25px;
	margin-left: auto;
    margin-right: auto
}

.leaderboardEntry{
	background-color:#727272 ;
	width: 400px;
	align-content: center;
	border-radius: 25px;
	margin-left: auto;
  margin-right: auto
}

/*
 * Styling Element to fit resoloutions after 600px
 * More suitible to fitting mobile displays
 */
@media screen and (max-width:600px){

/*
 * Styling for Hunter Bounties
 */
.huntstyle{
	background-color:#727272 ;
	cursor: pointer;
	width: 60vw;
	align-content: center;
	border-radius: 25px;
	margin-left: auto;
    margin-right: auto
}

/*
 * Styling for Hunter Leaderboard
 */
.leaderboard{
	background-color:#50E979 ;
	cursor: pointer;
	width: 60vw;
	align-content: center;
	border-radius: 25px;
	margin-left: auto;
    margin-right: auto
}

/*
 * Styling for titles
 */
.boldtitle{
	font-family: 'Noto Sans KR', sans-serif;
	text-shadow: 2px 2px #000;
	font-size:10vw;
}



}
