31 lines
448 B
CSS
31 lines
448 B
CSS
footer {
|
|
font-family: system-ui;
|
|
background: #616A6B;
|
|
color: white;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
footer h2 {
|
|
font-size: 25pt;
|
|
}
|
|
|
|
footer ol {
|
|
display: inline-block;
|
|
}
|
|
|
|
footer p{
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 25px;
|
|
width: 100%;
|
|
background-color: #45a1ff;
|
|
color: white;
|
|
}
|