blob: 777afd89622714178415a96275d4594be5ff1ffe (
plain)
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
|
@import url(variables.css);
:root {
font-family: "Poppins", sans-serif;
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body {
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
background-color: var(--color-dark);
}
h1 {
font-size: 3rem;
font-weight: 400;
}
|