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=Source+Code+Pro:wght@200;300;400;500;700;900&display=swap');
3@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic');
4
5::-webkit-scrollbar {
6 width: 10px;
7}
8
9::-webkit-scrollbar-track-piece {
10 background-color: #393939;
11}
12
13::-webkit-scrollbar-thumb {
14 background-color: #FFFFFF;
15}
16
17html {
18 scrollbar-color: #ffffff #393939;
19 scrollbar-width: thin;
20}
21
22body {
23 position: relative;
24 margin: 0;
25 font-family: "Source Sans Pro";
26 color: white;
27 background:#000000;
28 font-weight: 200;
29 text-shadow: 0px 0px 5px black;
30 width: 100vw;
31 height: 100vh;
32}
33#container {
34 position: relative;
35 width: 100%;
36 height: 100vh;
37 overflow: hidden;
38}
39.flex-container-title{
40 font-size: 22px;
41 font-weight: 900;
42 border-bottom: 1px solid white;
43 margin: 32px;
44 margin-right: 96px;
45}
46#flex-container{
47 display:flex;
48 flex-wrap: wrap;
49}
50.module{
51 margin: 64px;
52 padding: 32px;
53 border: 1px solid white;
54}
55.module-title {
56 font-size: 22px;
57 font-weight: 900;
58}
59.module-text {
60 font-size: 18px;
61 font-family: "Source Code Pro";
62 border-top: 1px solid white;
63}
64#home-link{
65 position: absolute;
66 top: 40px;
67 right: 40px;
68}
69#home-link-a{
70 color: white;
71 text-decoration: none;
72font-size: 32px;
73font-weight: 400;
74}
75#home-icon{
76 width: 32px;
77 height: 32px;
78}