57 lines
841 B
CSS
57 lines
841 B
CSS
* {
|
|
font-family: "Inter", sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
header {
|
|
width: 100%;
|
|
height: 101px;
|
|
background-color: #000000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
header .logo {
|
|
width: 100%;
|
|
max-width: 227px;
|
|
height: 43px;
|
|
}
|
|
|
|
footer {
|
|
width: 100%;
|
|
height: 128px;
|
|
background-color: #000000;
|
|
padding: 38px 0px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
footer .Icons-RedesSocias img {
|
|
width: 24px;
|
|
height: 25px;
|
|
margin: 0 8px;
|
|
}
|
|
|
|
footer p {
|
|
margin-top: 17px;
|
|
width: 300px;
|
|
font-weight: 400;
|
|
font-size: 11px;
|
|
line-height: 12px;
|
|
color: #BDBDBD;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
@media(min-width: 1920px){
|
|
header .logo {
|
|
width: 500px;
|
|
height: 200px;
|
|
}
|
|
}
|