footer {
    margin-top: 50px;
    width: 100%;
	background: #131313;
	border-top: 3px solid var(--text-color);
	display: flex;
	flex-direction: column;
}

.footer-wrapper {
    width: 60%;
    margin: auto;
	padding: 40px 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.footer-element {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 180px;
	max-width: 220px;
	gap: 10px;
}

.footer-head-element {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: fit-content;
}

.footer-head-version {
	color: white;
	background-color: var(--text-color);
	padding: 5px 8px;
}

#footer-logo {
    width: 100%;
    height: auto;
    filter: invert(1) brightness(2);
}

footer h2 {
	font-size: bold;
	margin: 0 0 8px 0;
	color: white;
	letter-spacing: 0.5px;
}

footer a {
	color: #c9c9c9;
	text-decoration: none;
	margin-bottom: 4px;
	transition: color 0.2s;
	font-size: 0.98em;
}

footer a:hover {
	text-decoration: underline;
}

.legal-notice {
    text-align: center;
    font-size: 0.9em;
    line-height: 0.8;
    color: #555;
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    
    .footer-wrapper {
        width: 90%;
        gap: 40px;
    }

	.footer-head {
		gap: 0;
	}
}