:root {
	--Page-label: #343a40;
}

/* FOOTER STYLING */
.footer-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	background-color: var(--Page-label);
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 1000;
}

/* Footer buttons */
.footer-btn {
	font-weight: 100;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	font-size: 24px;
	color: white;
	text-shadow: black 1px 1px 5px;
	cursor: pointer;
	text-align: center;
	padding: 5px;
	margin-top: 3px;
	text-decoration: none;
	outline: none !important;
}

.footer-btn i {
	font-size: 26px;
	font-weight: 100;
}

.footer-btn:hover {
	color: white;
	text-decoration: none;
}

.footer-btn span {
	margin-top: 5px;
	font-size: 24px;
	font-weight: 100;
}

.footer-btn:focus-visible {
	outline: 3px solid #0d6efd;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

/* Responsive font size for smaller screens */
@media screen and (max-width: 768px) {
	.footer-btn span {
		font-size: 22px;
	}
}

/* Active button style */
.footer-btn.active {
	color: white;
	text-shadow: black 1px 1px 5px;
	font-weight: lighter;
}

/* Hide footer menu on larger screens */
@media screen and (min-width: 1000px) {
	.footer-menu {
		display: none;
	}
}