challenge-landing-page-gabr.../assets/CSS/main.css

28 lines
463 B
CSS
Raw Normal View History

2022-10-13 22:24:06 +00:00
@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;
2022-10-13 22:26:43 +00:00
}
.page-header {
display: flex;
justify-content: center;
background: #000000;
padding: 28px 0;
}
.header-logo {
display: block;
}
2022-10-13 22:29:50 +00:00
.main-banner-desktop, .main-banner-mobile {
display: block;
width: 100%;
}