/* ====================================================== 
FOOTER 
====================================================== */
footer {
	background: whitesmoke;
	padding: 20px 0;
	text-align: center;
	font-family: monospace;
	color: var(--title);
	/* Empujar el footer al final de la página. Este estilo se uso en combinacion con 
	el display flex del body que lo convierte en contenedor vertical */
	margin-top: auto;
}

footer .footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 10px;
}

footer .footer-item h3 {
	margin: 0;
	font-size: 14px;
	color: var(--subtitle);
}

footer .footer-item p {
	margin: 3px 0 0 0;
	font-size: 14px;
}

footer .footer-item a {
	color: #2196F3;
	text-decoration: none;
	transition: all 0.3s ease;
}

footer .footer-item a:hover {
	color: #1E88E5;
	text-decoration: underline;
}

footer .footer-copy {
	font-size: 12px;
	color: #877a7a;
}

@media (min-width: 600px) {
	footer .footer-container {
		flex-direction: row;
		justify-content: center;
		gap: 60px;
	}
}

footer .footer-dev {
	font-size: 12px;
	color: #877a7a;
	margin-top: 5px;
}

footer .footer-dev a {
	color: #2196F3;
	text-decoration: none;
	transition: all 0.3s ease;
}

footer .footer-dev a:hover {
	color: #1E88E5;
	text-decoration: underline;
}