/*************** FOOTER ****************/
footer {
	margin-top: auto;
	margin-top: 2rem;
	padding: 1.5rem;
	background: #040925;
	color: white;
	text-align: center;
}

footer img {
	height: 5rem;
	margin-bottom: 0.8rem;
}

.social-icons {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 1rem 10rem;
	list-style: none;
	padding: 0;
	margin: 0 auto 1.5rem;
	justify-content: center;
}

.social-icons li {
	list-style: none;
	white-space: nowrap;
}

footer .social-icons a {
	color: #9e2d66;
	text-decoration: none;
	font-size: 1.4rem;
}

footer .social-icons a:hover {
	text-decoration: underline;
}

/* Responsive  */
@media ( max-width : 600px) {
	.social-icons {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		text-align: center;
	}
}