* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	font-family: Georgia, serif;
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	background-image: url('forest-8765686_1280.jpg');
	background-attachment: fixed;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	z-index: -1;
}

p {
	margin-top: 1em
}

.page-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.header h1 {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 0.5em;
	text-align: center;
}

.header h2 {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	width: 200px;
	height: 18px;
	margin: 0 auto;
}

.intro img {
	width: 100%;
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
}

.main-content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.summary {
	flex: 1 1 250px;
	background-color: rgba(233, 169, 209, 0.85);
	border-radius: 20px;
	padding: 15px;
	text-align: center;
	color: #000;
}

.summary p {
	font-style: italic;
}

.preamble,
.supporting {
	flex: 2 1 600px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	color: #000;
}

.sidebar {
	flex: 0 0 200px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0,0,0,0.05);
	color: #000;
}

.sidebar h3 {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	height: 16px;
	margin-bottom: 10px;
}

.sidebar ul {
	list-style: none;
	padding: 0;
}

.sidebar li {
	margin-bottom: 8px;
}

.sidebar a,
.footer a {
	position: relative;
	color: #7A5C94;
	text-decoration: none;
	transition: color 0.3s ease;
}

.sidebar a::after,
.footer a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background-color: #9685BA;
	transition: width 0.3s ease;
}

.sidebar a:hover,
.sidebar a:focus,
.footer a:hover,
.footer a:focus {
	color: #9685BA;
}

.sidebar a:hover::after,
.sidebar a:focus::after,
.footer a:hover::after,
.footer a:focus::after {
	width: 100%;
}

.footer {
	text-align: center;
	padding: 20px 0;
	margin-top: 40px;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}
