-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (48 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (48 loc) · 1.04 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
body {
margin: 0;
padding: 0;
height: 100vh;
background: #0f0f0f;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', sans-serif;
}
.glass-container {
max-width: 600px;
width: 90%;
padding: 80px 40px;
text-align: center;
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(20px);
box-shadow: 0 0 80px rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
}
.title {
color: white;
font-size: 36px;
margin-bottom: 10px;
}
.description {
color: #ccc;
font-size: 18px;
margin-bottom: 40px;
line-height: 1.5;
}
.neon-button {
display: inline-block;
padding: 15px 50px;
color: white;
font-size: 20px;
text-decoration: none;
background: rgba(255, 255, 255, 0.1);
border: 2px solid white;
border-radius: 30px;
box-shadow: 0 0 15px white, 0 0 40px white, 0 0 60px white;
transition: all 0.3s ease;
}
.neon-button:hover {
transform: scale(1.05);
box-shadow: 0 0 25px white, 0 0 60px white, 0 0 90px white;
}