/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family:Verdana, Geneva, Tahoma, sans-serif;
	background-color: whitesmoke;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Hamburger Menu / navigation bar */
nav {
	overflow: hidden;
	background-color: #9d1c20;
	position: sticky;
}

#hamburger_menu {
    display: none;
}

nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
	display: block;
}

.hamburger_menu_icon {
	background-color: #4a150b;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}

#logo {
	padding: 0px;
}
#logo img {
	height: 35px;
	margin: 5px;
}

.hamburger_menu_icon:hover {
	background-color: black;
}

#hamburger_menu a {
	background-color: grey;
}

#hamburger_menu a:hover {
    background-color: black;
}

/* Casino Title / Title of webpage :D */
#casino_title {
	padding: 10px;
	text-align: center;
}
h1 {
	font-size: 40px;
	text-align: center;
	margin: 5px;
	font-weight: bold;
}
#casino_title p {
	color: black;
}

/* Casino Info / Video Poker & Keno Machines! */
#casinoInfo {
	height: auto;
	background-color: white;
	margin: 10px 0;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
}
#casinoInfo h2 {
	padding: 10px 10px 0 10px;
	font-size: 25px;
	text-align: center;	
	color: black;
	font-weight: bold;
}
#casinoInfo hr {
	margin: 5px 20px;
	border: 1px solid black;
}
#casinoInfo p {
	padding: 10px 10px 10px 5px;
	font-size: 14px;
	color: black;
}
#Keno_Info_Container {
	display: flex;
}
#Keno_Info_Container img {
	margin: 10px;
	border: 2px solid white;
}

/* iRewards */
#iRewards {
	display: flex;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 100%;
	height: 215px;
	background-color: rgb(45, 45, 45);
	background-image: url(../Images/Card_Hand.jpg);
	background-size: cover;
	background-blend-mode: multiply;
	border-top: 2px solid grey;
	border-bottom: 2px solid grey;
	margin: 10px 0;
}
#iRewards h2 {
	padding: 10px 10px 0 10px;
	font-size: 22px;
	text-align: center;
	font-weight: bold;
	color: white;
	text-decoration: underline;
}
#iRewards p {
	padding: 15px;
	font-size: 16px;
	color: white;
	text-align: center;
}
#iRewards button {
	background-color: #9d1c20;
	color: white;
	border: none;
	font-size: 16px;
	text-align: center;
	margin: 10px;
	padding: 10px;
	cursor: pointer;
	width: 150px;
	height: 40px;
	/* positioning */
}
#iRewards button:hover {
	background-color: #b72323;
}

/* Footer! */
footer {
	background-color: #4a150b;
	color: white;
	padding: 25px 10px;
	text-align: left;
	font-size: 12px;
}