:root {
	--primary-color: #8d3132;
}
.page-not-found .container {
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}
.page-not-found h1 {
	font-size: 6rem;
	margin: 0;
	color: var(--primary-color);
}
.page-not-found h2 {
	font-size: 2rem;
	margin-top: 0;
	margin-bottom: 1rem;
	color: #444;
}
.page-not-found p {
	color: #666;
	margin-bottom: 2rem;
}
.page-not-found .btn {
	display: inline-block;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	border-radius: 4px;
	transition: background-color 0.3s ease;
}
.page-not-found .btn:hover {
	background-color: var(--primary-color);
}