-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
134 lines (112 loc) · 2.15 KB
/
style.css
File metadata and controls
134 lines (112 loc) · 2.15 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #fff;
background: radial-gradient(circle at top, #0a0a0f, #000);
overflow: hidden;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.container {
position: relative;
z-index: 2;
text-align: center;
animation: fadeIn 2s ease-in-out;
transform: translateY(-30px);
}
.title {
font-size: 3em;
letter-spacing: 1px;
margin-bottom: 10px;
}
.glow-text {
color: #00ffff;
text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
animation: pulseGlow 3s infinite alternate;
}
.subtitle {
font-size: 1.3em;
font-weight: 300;
color: #aaa;
margin-bottom: 20px;
}
.intro {
max-width: 600px;
margin: 0 auto 30px;
line-height: 1.6;
font-size: 1.1em;
color: #ddd;
}
.accent {
color: #00ffff;
}
.btn-group {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 12px 25px;
border: none;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: 0.3s;
cursor: pointer;
font-size: 1em;
}
.btn.primary {
background: linear-gradient(90deg, #00ffff, #0077ff);
color: #000;
box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}
.btn.primary:hover {
transform: translateY(-3px);
box-shadow: 0 0 25px #00ffff;
}
.btn.secondary {
background: transparent;
border: 2px solid #00ffff;
color: #00ffff;
}
.btn.secondary:hover {
background: #00ffff;
color: #000;
box-shadow: 0 0 20px #00ffff;
}
footer {
position: fixed;
bottom: 15px;
width: 100%;
text-align: center;
font-size: 0.9em;
color: #aaa;
z-index: 2;
}
@keyframes fadeIn {
from {opacity: 0; transform: translateY(40px);}
to {opacity: 1; transform: translateY(0);}
}
@keyframes pulseGlow {
from {text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;}
to {text-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;}
}