* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f2ec;
}

a {
	text-decoration: none;
	color: inherit;
}

.header {
	position: relative;
	max-height: 100px;
	height: 100px;
	background-image: url("/waveheader.png");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, #552048, #642554);
	opacity: 0.83;
}

.header-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
}

.main-header {
	font-weight: 700;
	/* font-size: 60px; */
	font-size: clamp(30px, 10vw, 60px);
	letter-spacing: -3%;
	color: #f8f2ec;
}

.boxes-container {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: fit-content;
}

.small-box {
	background-color: #f8f2ec;
	color: #552048;
	padding: 3px 6px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
}

.nav-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
	color: #552048;
}

nav-link {
	text-decoration: underline;
	font-weight: 500;
	font-size: 18px;
	color: #f8f2ec;
	background-color: #552048;
	padding: 3px 6px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.1s ease;
}
nav-link:hover {
	background-color: #b44398;
	color: #f8f2ec;
	transform: scale(1.05);
}

.social-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	transition: all 0.2s ease;
	cursor: pointer;
}
.social-logo {
	width: 25px;
	height: 25px;
	fill: #f8f2ec;
}

.content-section {
	margin-top: 16px;
	padding-bottom: 24px;
}

.section {
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
	padding: 8px 0;
}

.subheader {
	font-weight: 600;
	font-size: 26px;
	letter-spacing: -3%;
	color: #552048;
	margin-bottom: 8px;
}

.tertiary-header {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -3%;
	color: #6e2e5e;
	margin-bottom: 4px;
	margin-top: 4px;
}

.secondary-subheader {
	font-weight: 400;
	font-size: 13px;
	letter-spacing: -3%;
	color: #645560;
	margin-bottom: 8px;
	margin-top: -4px;
}

.body-text {
	font-weight: 400;
	font-size: 15px;
	letter-spacing: -3%;
	color: #714D68;
	line-height: 1.5;
	margin-bottom: 16px;
}
.bullet {
	margin: 0;
}

ul {
	list-style-position: inside;
}
.indented {
	margin-left: 20px;
}

.update-box {
	border: 3px solid #6e2e5e;
	padding: 8px 12px 12px;
	margin-bottom: 16px;
	transition: all 0.1s ease;
	cursor: pointer;
}
.update-box:hover {
	background-color: #f0e1e8;
	transform: scale(1.02);
}