#book-grid {
	margin: 60px auto 0;
	width: 1130px;
	justify-self: center;
	display: flex;
	gap: 40px;
	border-radius: 0;
	background-color: transparent;
}

.book {
	max-width: 350px;
}

.book-cover {
	border-radius: 10px;
	width: 350px;
	height: 558px;
	margin-bottom: 10px;
}

.book-title {
	font-weight: 800;
	font-size: 25px;
}

.book-subtitle {
	margin-top: 10px;
}


@media (max-width: 1200px) {
	#book-grid {
		display: grid;
		width: auto;
		justify-items: center;
		gap: 70px;
	}

	.book-title, .book-subtitle {
		text-align: center;
	}
}