17 lines
222 B
CSS
17 lines
222 B
CSS
* {
|
|
margin: 0%;
|
|
padding: 0%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
padding: 28px 0;
|
|
|
|
justify-content: center;
|
|
background: #000000;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
} |