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