	/* --- BLOG FEED --- */

	/* Contenedor */
	.feed-container {
	width: 90%;
	margin: 50px;
	padding: 40px;
	background: orange;

	}

	ul {
	list-style-type: none;

	}

	li {
	border-bottom: 3px solid red;
	width: 95%;
	padding: 50px;

	}

	li:last-child {
	border-bottom: 3px solid red;

	}

	a {
	text-decoration: none;
	color: blue;

	}

	a:hover {
	text-decoration: none;
	color: red;
	}
	
