challenge-landing-page-gabr.../assets/style/main.css

36 lines
584 B
CSS
Raw Normal View History

2022-10-13 19:39:07 +00:00
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: #000000;
}
.page-header {
display: flex;
justify-content: center;
padding: 28px 0;
background: #000000;
}
.logo-header {
display: block;
max-width: 226px;
width: 100%;
2022-10-13 20:45:06 +00:00
}
.image-main {
width: 100%;
}
@media screen and (max-width: 415px) {
.image-main-desktop {
content: url(../imagem/banner-main-mobile.png);
}
2022-10-13 19:39:07 +00:00
}