challenge-landing-page-juan.../styles/main.css

34 lines
457 B
CSS
Raw Normal View History

2022-10-12 00:44:49 +00:00
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
2022-10-12 00:44:49 +00:00
.header-logo {
width: 100%;
display: block;
}
.page-header {
display: flex;
padding: 28px 0;
justify-content: center;
background: #000;
}
.main-banner{
2022-10-12 00:44:49 +00:00
width: 100%;
}
@media screen and (min-width: 821px) {
.main-banner-mobile {
display: none;
}
}
@media screen and (max-width: 820px) {
.main-banner-desktop {
display: none;
}
2022-10-12 00:44:49 +00:00
}