-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (63 loc) · 1.23 KB
/
style.css
File metadata and controls
75 lines (63 loc) · 1.23 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;600;700;900&display=swap');
:root {
font-family: Inter;
line-height: 1.5;
font-weight: 400;
background-color: var(--color-primary);
color: white;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
overflow: hidden;
--color-primary: #0F2405;
--color-secondary: #27FF04;
}
a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
}
body {
position: relative;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
place-items: center;
min-width: 320px;
min-height: 100vh;
}
h1 {
font-size: 3.2em;
line-height: 1.1;
}
p {
margin-left: auto;
margin-right: auto;
font-size: 16px;
font-weight: 600;
text-align: center;
line-height: 1.5;
max-width: 450px;
}
.background_gradient_circle {
position: absolute;
width: 300px;
height: 300px;
background: var(--color-secondary);
border-radius: 100%;
filter: blur(125px);
opacity: 0.5;
z-index: -1;
}
.favicon {
width: 64px;
height: auto;
}