/* /5/lista.css */

.feed-container {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: white;
    color: black;
}

.feed-lista {
    list-style: none;
    margin: 10px;
    padding: 10px;
}

.feed-item {
    padding: 10px;
    border-bottom: 3px solid black;
    font-size: 18px;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-item a {
    color: blue;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.4s ease;
}

.feed-item a:hover {
    color: red;
}

.feed-fuente {
    font-size: 14px;
    color: black;
    font-style: italic;
}

.feed-vacio {
    font-size: 18px;
    color: black;
}

body {
	width: 99%;
	height: 99%;
	padding: 20px;
	margin: 20px;
	font-size: 27px;
	color: blue;
	background: rgba(0, 0, 255, 0.5); /* Color con transparencia del 50% */
	border: 3px solid darkblue;
	border-radius: 10px; /* Radio del Borde */
	opacity: 0.8;
	text-align: center;
}

	/* --- ENLACE --- */

	/* Color del Enlace */
	.enlace {
	color: blue; /* Color del Enlace */
	text-decoration: none; /* Subrayado Nulo */
	}

	/* Enlace Cambia de Color con el Cursor Encima */
	.enlace:hover {
	color: red; /* Color del Enlace con el Cursor Encima */    
  	}
