
body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

*, *:before, *:after {
	font-family: Arial, Helvetica, sans-serif;
}

/* * * * * * * * * * HEADER * * * * * * * * * */

header {
	display: flex;
	justify-content: center;
}

#header-image {
	margin-top: 5vh;
	width: 500px;
	pointer-events: none;
}

/* * * * * * * * * * GAME * * * * * * * * * */

#game {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 500px;
}

/* * * * * * * * * * INSTRUCTIONS * * * * * * * * * */

#betting-instructions {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 6px double black;
	width: 100%;
	padding: 15px;
}

p {
	margin-top: 0px;
	padding: 0 5px;
	line-height: 2rem;
	text-align: justify;
}

h3 {
	margin: 0;
}

.bet-input-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 10px;
}

input {
	flex: 1;
	margin-right: 15px;
	outline: none;
	border: 3px solid black;
	border-radius: 0;
	box-shadow: inset 0 0 transparent;
	height: 34px;
	padding: 0 0 0 10px;
	font-size: 1rem;
	color: #DADDDD;
}

input:focus {
	color: black;
}

button {
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	border: 3px solid black;
	height: 40px;
	width: 140px;
	background: black;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
	color: white;
}

button:hover {
	background: white;
	color: black;
}

/* * * * * * * * * * SPINNER * * * * * * * * * */

#spinner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
	border: 6px double black;
	padding: 15px;
	width: 100%;
}
 
.slot-container {
    margin: 0;
    width: 30%;
    padding: 0;
}

.slot-image {
	border: 3px solid black;
	width: 30%;
}

/* * * * * * * * * * TOKEN SCORE BAR * * * * * * * * * */

#money {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-right: 0px;
	border: 6px double black;
	padding: 15px;
	width: 100%;
	background: white;
}

h2 {
    margin: 0;
    font-size: 40px;
}

/* * * * * * * * * * FOOTER * * * * * * * * * */

footer {
	margin-top: 10px;
	text-align: center;
}

/* * * * * * * * * * ANIMATIONS * * * * * * * * * */

#notification {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 5px;
	position: absolute;
	width: calc(100% - 30px);
	z-index: 5;
	height: 2.1rem;
}

.marquee {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
}
.marquee p {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 25s linear infinite;
}
@keyframes marquee {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0);
	}
}

/* * * * * * * * * * MEDIA QUERY * * * * * * * * * */

@media (max-width: 600px) {
	#header-image {
		width: 70%;
	}
	#game {
		width: 80%;
	} 
	p {
		font-size: 3vw;
	}
	input {
		font-size: 1rem;
		padding: 0 0 0 10px !important;
	}
	h3 {
		font-size: 3vw;
	}
	#label {
		display: none;
	}
	#notification {
		padding: 0;
	}
}