1@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;700;900&display=swap");
2@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@200;300;400;500;700;900&display=swap");
3
4::-webkit-scrollbar {
5 width: 10px;
6}
7
8::-webkit-scrollbar-track-piece {
9 background-color: #393939;
10}
11
12::-webkit-scrollbar-thumb {
13 background-color: #ffffff;
14}
15
16html {
17 scrollbar-color: #ffffff #393939;
18 scrollbar-width: thin;
19}
20
21body {
22 position: relative;
23 margin: 0;
24 font-family: "Source Sans Pro";
25 color: black;
26 background: #ffffff;
27 font-weight: 200;
28 text-shadow: 0px 0px 5px white;
29 width: 100%;
30 height: 3234px; /*388.67+128+384+410+384+162.67+384+268.67+384+212+128*/
31}
32
33.section {
34 position: absolute;
35 font-family: "Space Mono";
36 font-size: 24px;
37 width: 1460px;
38}
39.section-left {
40 left: 128px;
41 text-align: left;
42}
43.section-right {
44 right: 128px;
45 text-align: right;
46}
47
48/* Section spacing guide: 128px (initial) + (384px margin per section) */
49
50#section-one {
51 top: 128px;
52}
53
54#section-two {
55 top: 900.67px; /*388.67+128+384*/
56}
57
58#section-three {
59 top: 1694.67px; /*388.67+128+384+410+384*/
60}
61
62#section-four {
63 top: 2241.34px; /*388.67+128+384+410+384+162.67+384*/
64}
65
66#section-five {
67 top: 2894px; /*388.67+128+384+410+384+162.67+384+268.67+384*/
68}
69
70.section-title {
71 font-size: 48px;
72 font-family: "Rubik";
73 font-weight: 700;
74}
75
76#home-link {
77 position: absolute;
78 top: 40px;
79 right: 40px;
80}
81
82#home-link-a {
83 color: white;
84 text-decoration: none;
85 font-size: 32px;
86 font-weight: 400;
87}
88
89#home-icon {
90 width: 32px;
91 height: 32px;
92}
93
94@keyframes loadIn {
95 from {
96 opacity: 0;
97 transform: translateY(-10px);
98 }
99 to {
100 opacity: 1;
101 transform: translateY(0px);
102 }
103}
104
105@keyframes loadOut {
106 from {
107 opacity: 1;
108 transform: translateY(0px);
109 }
110 to {
111 opacity: 0;
112 transform: translateY(-10px);
113 }
114}