You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
733 B

.footer {
background-color: var(--bg-secondary);
padding: 1rem 2rem;
text-align: center;
border-top: 1px solid var(--border-color);
margin-top: 4rem;
margin-bottom: 0;
}
.footer p {
margin: 0;
color: var(--text-secondary);
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-links {
display: flex;
gap: 1.5rem;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-links a:hover {
color: var(--text-primary);
}
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
gap: 1rem;
text-align: center;
}
}