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

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

.header h1 {
	font-size: 50px;
}

.header__author p {
	font-size: 15px;
	color: rgb(87, 84, 84);
}

strong {
	color: black;
}

.container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 15px;
	/* background: #fff; */
	/* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.main-content {
	flex: 3;
	margin-right: 20px;
	padding: 20px;
}

.sidebar {
	flex: 1;
	padding: 20px;
	min-width: 350px;
}

.hero-image {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 10px;
}

p {
	margin-bottom: 15px;
}

.rating {
	background: #222;
	color: #fff;
	padding: 10px;
	text-align: center;
	font-size: 1.2rem;
	margin-top: 20px;
}

.sidebar h2 {
	margin-top: 0;
}

/* Sidebar CSS */
.sidebar ul {
	list-style: none;
	padding: 0;
}

.sidebar ul li {
	margin-bottom: 10px;
}

.sidebar ul li a {
	text-decoration: none;
	color: #007bff;
}

.sidebar ul li a:hover {
	text-decoration: underline;
}

.sidebar__card {
	/* background: #ffe680; */
	padding: 20px;
	margin: 20px 0;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar--title h2 {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	line-height: 1;
	margin-top: 0;
	margin-bottom: 26px;
	border-bottom: 2px solid #222222;
	margin: 0 0 10px 0;
	font-size: 1.5rem;
	color: #333;
}

.sidebar__card ul {
	list-style: none;
	padding: 0;
}

.sidebar__card ul li {
	margin-bottom: 10px;
}

.sidebar__card ul li a {
	text-decoration: none;
	color: #007bff;
	font-weight: bold;
}

.sidebar__card ul li a:hover {
	text-decoration: underline;
}

/* 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 List Items */
.content__list-item-title {
	font-weight: 500;
	font-size: 25px;
	margin: 10px 0;
	list-style-type: none;
}

.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;
}
