1@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;500;700;900&display=swap');
2@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic');
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: white;
26 background:#000000;
27 font-weight: 200;
28 text-shadow: 0px 0px 5px black;
29 width: 100vw;
30 height: 100vh;
31}
32#container {
33 position: relative;
34 width: 100%;
35 height: 100vh;
36 overflow: hidden;
37}
38#home-link{
39position: absolute;
40top: 40px;
41right: 40px;
42}
43#home-link-a{
44 color: white;
45 text-decoration: none;
46font-size: 32px;
47font-weight: 400;
48}
49#home-icon{
50 width: 32px;
51 height: 32px;
52}