|
|
|
|
@ -17,7 +17,7 @@ html, |
|
|
|
|
body { |
|
|
|
|
background: #1b223a; |
|
|
|
|
color: white; |
|
|
|
|
font-size: 1em; |
|
|
|
|
font-size: clamp(16px, 1vw, 32px); |
|
|
|
|
font-weight: 600; |
|
|
|
|
margin: 0px; |
|
|
|
|
} |
|
|
|
|
@ -65,10 +65,23 @@ nav a { |
|
|
|
|
background-color: #f39200; |
|
|
|
|
border-radius: 15px; |
|
|
|
|
text-decoration: none; |
|
|
|
|
font-size: 0.9em; |
|
|
|
|
font-size: clamp(16px, 0.5vw, 32px); |
|
|
|
|
font-weight: 600; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.header { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
align-items: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.flex1 { |
|
|
|
|
flex: 1; |
|
|
|
|
} |
|
|
|
|
.flex2 { |
|
|
|
|
flex: 2; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
nav a:hover { |
|
|
|
|
color: #1b223a; |
|
|
|
|
} |
|
|
|
|
|