challenge-landing-page-nico.../assets/styles.css
2022-10-10 10:40:26 -03:00

42 lines
601 B
CSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
color: #000000;
font-family: 'Inter', sans-serif;
}
.page__header {
display: flex;
justify-content: center;
background: #000000;
padding: 1.87rem 0;
}
.header__logo {
display: block;
}
.main__banner {
display: block;
width: 100%;
}
@media screen and (max-width: 414px) {
.main__banner-desktop,
.middle__banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main__banner-mobile,
.middle__banner-mobile {
display: none;
}
}