forked from M3-Academy/challenge-landing-page
24 lines
380 B
CSS
24 lines
380 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap%27');
|
|
|
|
* {
|
|
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: 28px 0;
|
|
}
|
|
|
|
.header-logo {
|
|
display: block;
|
|
}
|