blob: 43a6973511a0558cbfc1067e43db7c26cec7fda2 (
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
27
28
29
30
31
32
|
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
background-color: #121212;
margin: 0;
padding: 0;
min-height: 100vh;
overflow: hidden;
}
body {
display: flex;
justify-content: center;
align-items: flex-start;
}
h1 {
font-family: 'Roboto Mono';
color: #e6e6e6;
line-height: 1;
margin: 0;
margin-bottom: 1.5rem;
}
p {
font-family: 'Roboto Mono';
color: #e6e6e6;
}
|