24 lines
327 B
CSS
24 lines
327 B
CSS
.footer {
|
|
display: grid;
|
|
justify-content: center;
|
|
padding-block: 2rem 3rem;
|
|
background: var(--color-white);
|
|
}
|
|
|
|
.footer__content .title {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.footer__content .link {
|
|
display: block;
|
|
}
|
|
|
|
.footer__content ul + ul {
|
|
margin-top: 1.5rem;
|
|
}
|
|
|
|
.footer__tail {
|
|
margin-top: 3rem;
|
|
text-align: center;
|
|
}
|