28 lines
422 B
CSS
28 lines
422 B
CSS
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #1e3c70 !important;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
width: 300px;
|
|
max-width: 40vw;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
background-color: #1e3c70;
|
|
color: white;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
bottom: 0;
|
|
margin-top: auto;
|
|
}
|
|
|
|
.footer .container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
} |