47 lines
632 B
CSS
47 lines
632 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 28px 0;
|
|
background-color: #000;
|
|
}
|
|
|
|
.logo-header {
|
|
display: block;
|
|
}
|
|
|
|
.banner-principal {
|
|
width: 100%;
|
|
}
|
|
|
|
.container-infocard {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 80px 0;
|
|
}
|
|
|
|
.banner-infocard {
|
|
width: 315px;
|
|
height: 315px;
|
|
display: block;
|
|
}
|
|
|
|
@media (max-width:414px) {
|
|
.banner-principal-desktop {
|
|
display: none;
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width:415px) {
|
|
.banner-principal-mobile {
|
|
display: none;
|
|
}
|
|
} |