forked from M3-Academy/challenge-landing-page
21 lines
282 B
CSS
21 lines
282 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: center;
|
|
background: #000000;
|
|
padding: 29px 0;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
} |