:root {
	--primary: #cdcdcd;
	--white: #f7f7f9;
	--sidebar: #f0fff0;
	--black: #000000;
}
* {
	box-sizing: border-box;
}
header {
	background: var(--primary);
	width: 100%;
}
header a {
	text-decoration: none;
	color: var(--black);
}
body {
	background: var(--primary);
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: sans-serif;
}
main {
	flex: 1;
	background: var(--white);
	padding: 20px;
	margin: 0 20px;
	position: relative;
}
main p {
	text-align: justify;
}
footer {
	background: var(--primary);
	position: static;
	width: 100%;
	padding: 5px;
	margin-top: auto;
}
.image-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.image-row img {
	max-width: 100%;
	height: auto;
}
.image-bottom {
	position: absolute;
	bottom: -5px;
	right: 10px;
	text-align: right;
}
.container {
	display: flex;
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}
.sidebar {
	width: 120px;
	background: var(--sidebar);
	padding: 20px;
}
.sidebar a {
	text-decoration: underline dotted;
	color: var(--black);
	display: block;
	padding: 8px;
	border-radius: 4px;
}
.content {
	text-align: center;
}
