blob: 5ff32fd98c4839572c748eb3cada9154fccaeab8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
.headNav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
max-width: 95%;
margin: -10px auto;
font-family: "Poppins";
}
.rightNav {
display: flex;
cursor: pointer;
overflow-x: auto;
}
.rightNav a {
text-decoration: underline;
font-family: "Atkinson Hyperlegible";
color: var(--light-green);
font-size: 18px;
}
.rightNav p {
margin-right: 10px;
margin-left: 10px;
}
|