* {
	font-family: monospace;
	box-sizing: border-box;
}

body {
	background-color: #222;
}

#wrapper {
	padding: 10px 5%;
}

button {
	color: #f0f0f0;
	padding: 15px 32px;
	margin: 5px 0;
}

button:disabled {
	background-color: #B2B2B2;
	border: 2px solid #929292;
}

.header {
	padding: 10px;
	background-color: #A50F79;
	border: 5px solid #850f59;
	margin: auto;
	text-align: center;
}

.box {
	background-color: #476291;
	border: 5px #274271 solid;
	margin: 10px 0;
	padding: 10px;
	text-align: center;
}

.dice-box {
	display: flex;
	flex-direction: row;
}

.money, .funds {
	height: auto;
	padding: 1% 25%;
}

.funds {
	text-align: right;
}

.player-dice, .computer-dice {
	background-color: #f0f0f0;
	width: 50%;
	font-size: x-small;
	outline: solid 1px #222;
	margin: 5px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.player-dice {
	text-align: left;
}

.computer-dice {
	text-align: right;
}

.higher, .lower {
	text-align: center;
}

.roll {
	margin: 15px;
	background-color: #ffd700;
	border: 2px solid #dfb700;
}

.double-funds {
	background-color: #CF6A32;
	border: 2px solid #AF4A12;
}

.higher, .add-funds{
	background-color: #4D7455;
	border: 2px solid #3D6445;
}

.lower, .decrease-funds {
	background-color: #AA0000;
	border: 2px solid #890000;
}

.player-dice > div, .computer-dice > div {
	margin: 0 10px;
	align-self: center;
	width: 64px;
	height: 64px;
	float: left;
	background: url(../img/dice.png);
}

div.dice-state-1 {
	background-position: -64px 0;
}

div.dice-state-2 {
	background-position: -128px 0;
}

div.dice-state-3 {
	background-position: -192px 0;
}

div.dice-state-4 {
	background-position: -256px 0;
}

div.dice-state-5 {
	background-position: -320px 0;
}

div.dice-state-6 {
	background-position: -384px 0;
}

.win-loss-screen {
	background-color: transparent;
	border: none;
}

.win-screen, .loss-screen {
	font-weight: bold;
	padding: 10px;
	text-align: center;
	color: #f0f0f0;
}

.win-screen {
	background-color: #4D7455;
	border: #3D6445 solid 2px;
}

.loss-screen {
	background-color: #AA0000;
	border: #890000 solid 2px;
}
