body {
	background-color: #1a1a1a;
	color: #e0e0e0;
	font-family: "Roboto Slab", serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;
	padding: 20px;
	box-sizing: border-box;
}

.main-container {
	width: 100%;
	max-width: 700px;
	background-color: #2b2b2b;
	border: 1px solid #444;
	padding: 30px 40px;
	text-align: center;
}

h1 {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 2.5em;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	margin: 0;
}

.subtitle {
	font-family: "Roboto Slab", serif;
	font-style: italic;
	color: #a0a0a0;
	margin-top: 10px;
	margin-bottom: 20px;
}

.divider {
	border: 0;
	height: 1px;
	background-color: #555;
	margin-bottom: 30px;
}

.question {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 30px;
}

.answers {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.answer-btn {
	background-color: #3a3a3a;
	color: #e0e0e0;
	border: 1px solid #555;
	padding: 15px;
	font-family: "Roboto Slab", serif;
	font-size: 1.1em;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
	width: 100%;
}

.answer-btn:hover {
	background-color: #4a4a4a;
	border-color: #b0b0b0;
}

.progress {
	margin-top: 30px;
	color: #888;
	font-family: "Inter", sans-serif;
}

/* Results Styling */

.result-title {
	font-family: "Inter", sans-serif;
	font-size: 2em;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 20px;
}

.result-description {
	font-size: 1.2em;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 30px;
}

.share-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

.share-btn,
.restart-btn {
	text-decoration: none;
	display: inline-block;
	padding: 12px 25px;
	font-family: "Inter", sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #1a1a1a;
	background-color: #e0e0e0;
	border: none;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s;
}

.share-btn:hover,
.restart-btn:hover {
	background-color: #ffffff;
}
