.category .description {
	margin: 10px 0px 20px;
	text-indent: 20px;
}

.category .recipies {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.category .recipe {
	margin: 15px;
}

.category .recipe .title {
	font-size: 18px;
	text-align: center;
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.category .thumbnail {
	text-align: center;
	position: relative;
	height: 250px;
	width: 300px;
	overflow: hidden;
	border-radius: 5px;
}

.category .thumbnail img {
	position: absolute;
	left: 50%;
	top: 50%;
	height: 100%;
	width: auto;
	transform: translate(-50%, -50%);
}

@media (max-width: 780px) {
	.category .thumbnail {
		height: 150px;
		width: 195px;
	}

	.category .recipe .title {
		max-width: 195px;
	}
}