2022-10-08 19:02:41 +00:00
|
|
|
*{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-10-08 19:40:53 +00:00
|
|
|
|
2022-10-08 19:02:41 +00:00
|
|
|
.page-header{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
padding: 28px 0;
|
|
|
|
background-color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-logo{
|
|
|
|
display: block;
|
2022-10-08 19:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.Banner-principal{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 414px){
|
|
|
|
.Banner-principal-desktop{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 415px){
|
|
|
|
.Banner-principal-mobile{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|