25 lines
314 B
CSS
25 lines
314 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.body {
|
||
|
font-family: 'Inter', sans-serif;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
/*Cabeçalho*/
|
||
|
.header {
|
||
|
display: grid;
|
||
|
background-color: black;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 101px;
|
||
|
}
|
||
|
|
||
|
|
||
|
@media (min-width: 2500px) {
|
||
|
|
||
|
|