-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
111 lines (105 loc) · 2.38 KB
/
index.css
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
html {
font-family: inter, Helvetica, sans-serif;
}
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.fullPage {
background-image: radial-gradient(
circle at 85% 1%,
hsla(190, 0%, 93%, 0.05) 0%,
hsla(190, 0%, 93%, 0.05) 96%,
transparent 96%,
transparent 100%
),
radial-gradient(
circle at 14% 15%,
hsla(190, 0%, 93%, 0.05) 0%,
hsla(190, 0%, 93%, 0.05) 1%,
transparent 1%,
transparent 100%
),
radial-gradient(
circle at 60% 90%,
hsla(190, 0%, 93%, 0.05) 0%,
hsla(190, 0%, 93%, 0.05) 20%,
transparent 20%,
transparent 100%
),
radial-gradient(
circle at 79% 7%,
hsla(190, 0%, 93%, 0.05) 0%,
hsla(190, 0%, 93%, 0.05) 78%,
transparent 78%,
transparent 100%
),
radial-gradient(
circle at 55% 65%,
hsla(190, 0%, 93%, 0.05) 0%,
hsla(190, 0%, 93%, 0.05) 52%,
transparent 52%,
transparent 100%
),
linear-gradient(135deg, rgb(37, 56, 222), rgb(96, 189, 244));
height: 100vh;
width: 100%;
}
.header {
align-items: center;
display: flex;
flex-wrap: wrap;
height: fit-content;
justify-content: right;
margin-top: 0px;
overflow-wrap: anywhere;
padding: 30px 0 30px 0;
width: 100%;
}
.headerElement {
color: rgb(0, 31, 116);
float: right;
font-size: 2em;
margin: 0px 30px;
white-space: nowrap;
width: fit-content;
}
h1 {
font-size: 6em;
margin-top: 100px;
text-align: center;
}
h2 {
font-size: 3em;
text-align: center;
}
.getStartedAnchor {
text-decoration: none;
}
.getStarted {
background-image: linear-gradient(
to right,
#ff512f 0%,
#f09819 51%,
#ff512f 100%
);
border-radius: 100px;
box-shadow: 0 0 20px #ff9100;
color: white;
font-size: 2.5em;
margin-left: auto;
margin-right: auto;
padding: 25px;
text-decoration: none;
width: fit-content;
}
.getStarted:hover {
cursor: pointer;
}
.highlight {
background: -webkit-linear-gradient(#ffa200, #ffbb00);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}