challenge-landing-page/assets/styles/main.css

17 lines
242 B
CSS
Raw Normal View History

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Inter', sans-serif;
color: #000000;
2022-10-10 16:13:34 +00:00
}
.header-page{
background: #000000;
display: flex;
justify-content: center;
2022-10-10 16:18:36 +00:00
padding: 28px 0;
}