:root {
	--bg: #5A523D;
	--fg: #dfd4b7;
	--sec: #7b6f4f;
}

body {
	margin: 0;

	background-image: url(bgtile.png);
	background-size: 32px;
	background-attachment: fixed;

	color: var(--fg);
	background-color: var(--bg);

	display: flex;
	align-items: center;
	justify-content: center;

	min-width: 100dvw;

	padding: 100px 0px;

	overflow-x: hidden;

	box-sizing: border-box;

	flex-direction: column;

	gap: 50px;

	text-align: justify;
}

.container {
	border: 5px ridge var(--sec);
	padding: 20px;
	background-color: var(--bg);
	max-width: 500px;
}

hr {
	border: 2.5px outset var(--sec);
	background-color: var(--sec);
}

h1, h2, h3, h4, h5 {
	text-align: center;
}

em {
	text-decoration: underline;
	font-style: normal;
	font-weight: bold;
}

.button-flex {
	display: flex;
	justify-content: center;
}

.button-flex a {
	color: var(--fg);
	text-decoration: none;
	font-weight: bold;
	background-color: var(--sec);
	padding: 10px 25px;
	border: 2.5px outset var(--sec);
	box-sizing: border-box;
	display: block;
	width: fit-content;
}

.button-flex a:hover {
	background-color: var(--bg);
	border: 2.5px inset var(--bg);
}