challenge-landing-page-eleo.../assets/styles/main.css

44 lines
620 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;
align-items: center;
padding: 28px;
background: #000000;
}
.header-logo {
display: block;
}
.main-banner {
width: 100%;
}
@media screen and (max-width: 392px) {
.header-logo {
width: 180px
}
}
@media screen and (max-width: 414px) {
.main-banner-desktop {
display: none;
}
}
@media screen and (min-width: 415px) {
.main-banner-mobile {
display: none;
}
}