41 lines
522 B
CSS
41 lines
522 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* HEADER */
|
|
|
|
.header-container {
|
|
display: flex;
|
|
width: 100%;
|
|
background: #000000;
|
|
padding: 29px 0;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo-link {
|
|
width: 12%;
|
|
}
|
|
|
|
.logo {
|
|
width: 98%;
|
|
}
|
|
|
|
/* MOBILE */
|
|
|
|
@media (max-width: 1024px) {
|
|
.logo-link {
|
|
width: 55%;
|
|
}
|
|
|
|
.logo {
|
|
width: 99%;
|
|
} |