-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
72 lines (64 loc) · 1.18 KB
/
style.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
/* Basic Reset */
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
font-family: 'Arial', sans-serif;
background-color: #0f2027;
color: #fff;
}
/* Particle.js Background */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
background-color: #0f2027; /* Dark gradient background */
background-image: linear-gradient(315deg, #0f2027 0%, #203a43 74%);
}
/* Centered Content */
.content {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
z-index: 10;
}
/* Card Style */
.card {
background: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 15px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
color: #fff;
transition: transform 0.3s ease;
}
/* Text Styling */
.card h1 {
font-size: 2.5em;
margin: 0;
color: #ff7e5f;
}
.card h2 {
font-size: 1.5em;
margin: 10px 0;
color: #f7b733;
}
.card p {
font-size: 1.2em;
margin: 10px 0;
color: #dfe6e9;
}
.card strong {
color: #ff7e5f;
}
/* Hover Effects */
.card:hover {
transform: scale(1.05);
}