forked from M3-Academy/challenge-landing-page
24 lines
339 B
CSS
24 lines
339 B
CSS
*{
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body{
|
|
font-family: 'Inter', sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
.page-header{
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 28px 0;
|
|
background-color: #000;
|
|
}
|
|
|
|
.logo-header, .main-banner-desktop{
|
|
width: 100%;
|
|
display: block;
|
|
height: auto;
|
|
}
|