37 lines
601 B
CSS
37 lines
601 B
CSS
.header {
|
|
background-color: green;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
|
|
|
|
}
|
|
|
|
.header .container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.header .logo{
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 1.5em;
|
|
font-family: 'DM Serif Display';
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
font-size: 24px;
|
|
line-height: 100%;
|
|
}
|
|
|
|
.header .logo img{
|
|
margin-right: 10px
|
|
}
|
|
|
|
.header nav a {
|
|
margin-left: 60px;
|
|
text-decoration: none;
|
|
color: white;
|
|
font-family: "Poppins", sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 16px;
|
|
|
|
} |