body {
	/*font-family: Arial, Helvetica, sans-serif;*/
	font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
		"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	background-color: white;
	background-image: url("imgs/background4.webp");
	background-size: cover;
	backdrop-filter: blur(3px);
	margin: 0 auto;
	width: 1100px;
	/*border: 3px solid cornflowerblue;*/
	padding: 0 2em 1em;
	font-weight: bold;
}
h1 {
	/*color: cornflowerblue;*/
	color: rgb(138, 24, 24);
	font-style: italic;
	margin-bottom: 50px;
	margin-top: 0px;
}
label {
	display: inline-block;
	margin-right: 1em;
	font-size: 125%;
}
input {
	margin-top: 1em;
	margin-right: 1em;
	font-size: 120%;
	padding: 2.5px;
	padding-left: 9px;
	border-radius: 5px;
	border: 1px solid lightgray;
}
#turn {
	margin-top: 1em;
}
#turn div {
	/*color: red;*/
	color: rgb(192, 0, 0);
	/*margin-top: 1em;*/
}
#score1,
#score2,
#die,
#total {
	width: 5em;
}
.hide {
	display: none;
}

/**/
main {
	background-color: rgba(230, 226, 173, 0.842);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border: 1px solid rgb(230, 226, 173);
	border-radius: 5px;
	margin-top: 70px;
	padding: 50px 70px;
}
#div_result {
	color: rgb(18, 87, 143) !important;
	font-style: italic;
	font-size: 150%;
	margin: 0px;
	text-align: right;
}
fieldset {
	border-color: rgb(56, 56, 56);
	border-width: 1px;
	font-size: 105%;
	letter-spacing: 1px;
	margin-bottom: 22px;
}
fieldset ul {
	font-weight: normal;
}
#div_game {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr;
	grid-auto-rows: 1fr;
	justify-items: center;
	align-items: center;
	align-content: center;
	margin-bottom: 40px;
}
#new_game {
	align-self: center;
	justify-self: center;
}
section {
	grid-column: 1/3;
	display: flex;
	flex-direction: column;
}
.div_span {
	font-size: 120%;
}
input:disabled {
	color: rgb(82, 82, 82);
}

input[type="button"] {
	color: white;
	border: 1px solid rgba(141, 16, 16);
	background-color: rgba(141, 16, 16, 0.842);
	border-radius: 10px;
	padding: 5px 40px;
	letter-spacing: 1px;
	font-size: 110%;
	margin-bottom: 50px;
}
input[type="button"]:hover {
	background-color: rgb(138, 24, 24);
	cursor: pointer;
}
input[type="button"]:disabled {
	border: 1px solid rgb(153, 153, 153);
	background-color: rgba(167, 167, 167, 0.747);
	color: black;
	cursor: pointer;
}
small {
	font-size: 70%;
	color: black;
	letter-spacing: 2px;
}
