stunwin dot com
stunwin.com
1.header-row {
2 color: var(--main-text-color);
3 display: flex;
4 align-items: center;
5 justify-content: space-between;
6}
7
8.site-title {
9 font-family: commune;
10 display: inline-flex;
11 align-items: center;
12 font-size: 5.25rem;
13 line-height: 1.1;
14 margin: 0;
15}
16
17.nav-links {
18 display: flex;
19 flex-direction: column;
20 align-items: center;
21 gap: 0.5rem;
22 font-size: 1.125rem;
23 font-weight: 600;
24}
25
26.word-links {
27 display: flex;
28 gap: 1rem;
29}
30
31.icon-links {
32 display: flex;
33 gap: 0.75rem;
34 justify-content: center;
35}
36
37.icon {
38 margin: 5px;
39}
40
41.intro-copy {
42 margin: 1.5rem 0;
43 color: var(--main-text-color);
44}
45
46@media (pointer: coarse) {
47 .header-row {
48 flex-direction: column;
49 justify-content: flex-start;
50 gap: 10px;
51 }
52}