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