summaryrefslogtreecommitdiff
path: root/style.css
blob: 13d21ffdc6dfe484cdf8b9bb16beafc97c4e8275 (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;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

h1 {
    font-family: 'Roboto Mono';
    color: #e6e6e6;
    line-height: 1;
    margin: 0;
    margin-bottom: 1.5rem;
}

p {
    font-family: 'Roboto Mono';
    color: #e6e6e6;
}