html, body {
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
}

main {
  flex: 1;
}

h3 {
	text-indent: 0;
	margin-top: 5px;
	margin-bottom: 10px;
	text-shadow: var(--shadow-text);
	font-family: var(--header-font);
	font-size: 1.5rem;
	background-image: var(--button-bg);
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	font-weight: 400;
	box-shadow: var(--shadow-text);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-distributed { 
	position: static; /* or remove position entirely */
	bottom: 0;
	background: var(--background-color);
	width: 100%;
	box-shadow: var(--main-shadow);
	box-sizing: border-box;
	text-align: left;
	justify-content: space-between;
	align-items: center;
	display: flex;
	font-family: var(--main-font);
	padding: 10px;
  	margin-top: 40px; /* or any value you want */
}


.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  var(--main-font-color);
	margin: 0;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-links a:hover{
	color: var(--link-hover);
}

/* Footer Left */
.footer-distributed .footer-left {
	width: 28%;
	text-align: left;
	align-items: center;
	justify-content: center;
	text-align: center;
	order: 1;
	padding: 0 10px;
}

.footer-distributed .footer-left img {
	width: 88px;
	height: 31px;
	object-fit: cover;
	filter: grayscale(80%);
}

.footer-distributed .footer-left img:hover {
	filter: grayscale(5%);
}

/* Footer Center */
.footer-distributed .footer-center{
	width: 70%;
	align-items: center;
	justify-content: center;
	text-align: center;
	order: 2;
}

/* Footer Right */

.footer-distributed .footer-right{
	width: 28%;
	align-items: center;
	justify-content: center;
	text-align: center;
	order: 3;
	padding: 0 10px;
}

.footer-distributed .footer-icons{
	margin-top: 5px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	border-radius: 2px;
	font-size: 20px;
	color: var(--main-font-color);
	text-align: center;
	line-height: 35px;
	margin-right: 3px;
}

.footer-distributed .footer-icons a i{
	transition: all 200ms linear 0s;
}

.footer-distributed .footer-icons a:hover{
	color: var(--link-hover);
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {
	.footer-distributed {
		font-size: 14px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right {
		width: 100%;
		margin-bottom: 0px;
		text-align: center;
	}

	.footer-distributed .footer-left {
		order: 1;
	}

	.footer-distributed .footer-center {
		order: 2;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.footer-distributed .footer-right {
		order: 2;
	}
}



		
		
		
		
		
		
		
		
		
		
		
		
		