challenge-landing-page-affo.../_assets/css/main.css
2022-10-08 21:40:28 -03:00

40 lines
595 B
CSS

* {
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: 29px 0;
}
.header-logo {
display: block;
}
.main-banner-desktop {
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;
}
}