﻿/* Footer Styles */
.footer {
	background-color: #000; /* Black background */
	color: #fff; /* White text */
	height: 40vh;
	width: 100%;
}

.footer-link {
	color: #fff; /* White link text */
	text-decoration: none; /* Remove underline */
	transition: color 0.3s ease;
	margin: 20px 0 50px 0;
}

.footer-link:hover {
	color: #ffc107; /* Yellow color on hover */
}
