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

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

/* Navbar*/
.navbar {
	background-color: #3498db;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 900;
}
.navbar a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}
.navbar a:hover {
	text-decoration: underline;
}

/* Layout */
.layout {
	display: flex;
	justify-content: flex-start;
}

/* Main content */
.content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f9f9f9;
}

.content__description-container {
	max-width: 1200px;
	margin-left: 20px;
	padding: 20px;
	flex: 1;
}

.content__paragraph {
	margin: 15px 0;
}

.content__list-item-title {
	font-weight: 500;
	font-size: 25px;
	margin: 10px 0;
	list-style-type: none;
	position: absolute;
}

.content__list > span {
	font-weight: 900;
}

.content__list-item {
	margin: 10px 0;
}

.content__list-item--strong {
	font-weight: 800;
}

.content__list-item--margin {
	list-style-type: circle;
	margin-left: 15px;
}

.content__list-item--highlight {
	color: #3498db;
	font-weight: 800;
}

.content__list-item--error {
	color: #940707;
	font-weight: 800;
}

/* Button */
.content__cta-container {
	display: flex;
	justify-content: center;
	margin: 50px 0;
	flex-direction: row;
}

.reward-btn {
	background-color: #007bff; /* Bootstrap blue */
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 999px; /* fully rounded */
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-left: auto;
	margin-right: auto;
}

.reward-btn:active {
	transform: scale(0.95);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
