/* css document for HAY app */

body {
	font: 100% "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	margin: 0 auto;
	color: black;
	background-color: black;
}
    
    /* MAIN AREA */

#hdMainScreen,#hdGame {
	margin: 0 auto;
	width: 960px; /* 720p */
	height: 520px; /* 720p */
	background-color: black;
}

/* MINI DNGN GAME TUTORIAL */

#hdGame dl {
	display: block;
	width: 100%;
	background-color: white;
	padding: 0px;
	margin: 0px;
}

#hdGame dl dt {
	display: block;
	width: 100%;
	background-color: gold;
	padding: 5px 0px;
	font-size: 12px;
	font-family: Courier New;
	text-align: center;
}

#hdOpponentLife {
    background-color: red;
}

#hdUserLife {
    background-color: gold;
}

/* SHAPE OF THE GAME - DUNGEON */

#hdGame ul:nth-child(2) {
	clear: both;
	padding: 5px 10px;
	list-style: none;
	width: 940px;
	margin: 7px 13px;
	display: block;
}

#hdGame ul:nth-child(2) li {
	width: 60px; 
	height: 60px; 
	line-height: 60px; /* 60px */
	text-align: center;
	display: inline-block;
	margin: 2px 1px;
	font-size: 40px; /* 50px */
	font-weight: bold;	
	color: black;
	border-radius: 10px;
	border: 2px solid white;
	background-color: black;
	list-style: none;
	outline: none;
}


/* SHAPE OF THE GAME - NOTIFICATION */

#hdNotification {
	position: fixed; /* Sit on top of the page content */
	display: none; /* Hidden by default */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0; 
	left: 0;
	right: 0;
	bottom: 0;
	background-color: black; /* Black background with opacity */
	opacity: 1;
	z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
}

#hdNotifContent {
	text-align: center;
	border-radius: 10px;
	border:2px solid white;
	position: absolute;
	width: 320px;
	top: 50%;
	left: 50%;
	font-size: 50px;
	background-color: black;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	color: white;
	padding: 20px 0px 10px 0px;
}

#hdNotifContent figure ul {
	clear: both;
	padding-left: 10px;
	list-style: none;
	width: auto;
	margin: 0px auto;
	display: inline-block; /* inline-block */
}

#hdNotifContent figure ul li {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	display: inline-block;
	margin: 1px;
	font-size: 50px;
	font-weight: bold;	
	color: white;
	border-radius: 10px;
	border: 2px solid black;
	background-color: black;
	list-style: none;
}

#hdNotifContent figure ul li sup {
    color: white;
    background-color: #ea4335; 
    font-family: Arial;
	border-radius: 50%;
	line-height: 30px;
	height: 30px;
	width: 30px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	display: block;
	position: fixed;
	margin: -20px 0px 0px -15px;
    
}


#hdNotifContent figure figcaption {
    font-size: 20px;
    margin: 20px 0px -20px 0px;
    font-family: Courier New;
}

#hdNotifContent figure figcaption label {
    font-size: 12px;
}

#hdNotifContent dl {
	display: block;
	width: 90%;
	background-color: white;
	padding: 0px;
	margin: 0px auto;
}

#hdNotifContent dl dt {
	display: block;
	width: 100%;
	background-color: red;
	padding: 5px 0px;
	margin-left: -1px;
}

#hdNotifContent button {
    font-size: 20px;
    padding: 10px;
    border:2px solid white;
    background-color: black;
    color:white;
    width:90%;
    border-radius: 10px;
    font-family: Courier New;
    display: inline-block; /* inline-block */
    outline: none;
}

#hdNotifContent button:hover {
    border-color: gold;
    color:gold;
}

/* CONTROL SFX MUSIC AND ALL SOUNDS */

#hdDuringAudio,#hdEndingAudio,#hdOpeningAudio,#hdAttackAudio,#hdSpiderAudio,#hdGhostAudio,#hdSkullAudio,#hdWizardAudio,#hdCrowAudio,#hdZombieAudio,#hdBossAudio {
    display: hidden;
}

