forked from M3-Academy/challenge-landing-page
42 lines
601 B
CSS
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;
|
|
}
|
|
} |