2022-10-09 02:20:47 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 28px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo-header {
|
|
|
|
display: block;
|
2022-10-09 02:54:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.banner-principal {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-10-09 03:31:58 +00:00
|
|
|
.container-infocard {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
padding: 80px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-infocard {
|
|
|
|
width: 315px;
|
|
|
|
height: 315px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-10-09 02:54:42 +00:00
|
|
|
@media (max-width:414px) {
|
|
|
|
.banner-principal-desktop {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width:415px) {
|
|
|
|
.banner-principal-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-10-09 02:20:47 +00:00
|
|
|
}
|