body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 95vh;
	margin 0;
	gap: 50px;
	font-family: 'Playfair Display', serif;
	background-color: #2c3e50;
}

.game-container
{

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	height: auto;
	flex: 0 0 auto;	
	background-image: linear-gradient(to bottom, #2c3e50, #8e44ad, #d4af37);
	border-radius: 20%;
	box-shadow: 0px 0px 15px 15px rgba(0,0,0,0.3);
}

.option-container, .content, .scores
{
	width: 300px;
	flex: 0 0 auto;
}

.option-container{
	box-sizing: border-box;
	padding: 10px;
	margin-top: 20px;
}
.content{
	height: 150px;
	color: #f5f5dc;
}

.scores {
	height: 140px;
	padding: 10px;
	color: #f5f5dc;
}

button {
	background: #d4af37;
	font-family: inherit;
	font-weight: 900;
	font-size: 18px;
	border: 2px solid #8e44ad;
	border-radius: 0.4em;
	box-shadow: 0px 0px 10px rgba(212, 175, 55, 0.5);
	color: #2c3e50;
	cursor: pointer;
}

button:hover {
	transform: translate(-0.05em, -0.05em);
	box-shadow: 0.15em 0.15em;
	background-color: #b8860b;
}

button:active {
	transform: translate(0.05em, 0.05em);
	box-shadow: 0.05em 0.05em;
}

button:disabled {
	background-color: #b0a899;
	color: #e0d8c0;
	border-color: #a89e8a;
	opacity: 0.5;
	cursor: not-allowed;
}

button:disabled:hover {
	transform: none;
	box-shadow: none;
}
button:disabled:active{
	transform: none;
	box-shadow: none;
}
