17 lines
241 B
CSS
17 lines
241 B
CSS
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.header {
|
|
background: linear-gradient(135deg, #0d6efd, #0d6efd);
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|