2022-10-09 13:56:04 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');
|
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
html, body{
|
|
|
|
|
2022-10-08 19:09:09 +00:00
|
|
|
box-sizing: border-box;
|
2022-10-09 13:56:04 +00:00
|
|
|
font-family: 'Inter', sans-serif;
|
2022-10-08 19:09:09 +00:00
|
|
|
}
|
|
|
|
.header{
|
2022-10-09 13:56:04 +00:00
|
|
|
background: black;
|
2022-10-08 19:09:09 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 28px 0;
|
|
|
|
}
|
2022-10-09 13:56:04 +00:00
|
|
|
.imgLogoM3{
|
|
|
|
display: block;
|
2022-10-09 14:39:23 +00:00
|
|
|
}
|
|
|
|
.main-banner{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 414px) {
|
|
|
|
.main-banner-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 415px) {
|
|
|
|
.main-banner-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 13:56:04 +00:00
|
|
|
}
|