78 lines
1.2 KiB
CSS
78 lines
1.2 KiB
CSS
|
|
/* Home page
|
|
*/
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: #1f2937;
|
|
color: #f3f4f6;
|
|
padding: 4rem 2rem 2rem;
|
|
}
|
|
|
|
.footer-content {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.footer-section h3 {
|
|
color: #fff;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-section ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-section ul li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.footer-section a {
|
|
color: #f3f4f6;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.footer-section a:hover {
|
|
color: #fff;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footer-bottom {
|
|
border-top: 1px solid #374151;
|
|
padding-top: 2rem;
|
|
text-align: center;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-bottom a {
|
|
color: aquamarine;
|
|
}
|
|
|
|
.footer-section.contact {
|
|
width: 100%;
|
|
}
|
|
.footer-section .container {
|
|
padding: 0;
|
|
}
|
|
.footer-section .container.row .container.column {
|
|
padding: 1vh 2vw;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer-content {
|
|
grid-template-columns: 1fr;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 540px) {
|
|
.nav-links {
|
|
display: none;
|
|
}
|
|
} |