forked from M3-Academy/challenge-landing-page
16 lines
211 B
CSS
16 lines
211 B
CSS
* {
|
|
margin:0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page-header{
|
|
background: #000000;
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 28px 0;
|
|
}
|
|
|
|
.header-logo{
|
|
display: block;
|
|
} |