footer {
	background-color: var(--contrast-item-background);
	color: var(--text-color);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	border-top: 1px solid #393939;
}

.footer-logo {
    width: 200px;
}

.footer-content {
    display: flex;
    padding: 20px 0;
    padding-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    width: 100%;
    max-width: 1600px;
}

.footer-column {
    flex: 1;
    margin: 0 20px;
}

.footer-column h3 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 0;
}

.footer-column p {
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-column a {
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
}
.footer-bottom {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    width: 100%;
    color: white;
}

.footer-bottom p,
.footer-links a {
    color: var(--text-color);
    font-size: 14px;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-media {
    margin-top: auto;
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.social-media i {
    color: var(--text-color);
    font-size: 2em;
}

.powered-by {
    height: 25px;
}

@media (max-width: 768px) {
    .footer-content,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-content {
        gap: 30px;
    }


    .social-media {
        margin-top: auto;
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }
}