-
Notifications
You must be signed in to change notification settings - Fork 189
/
privacy.css
140 lines (118 loc) · 2.36 KB
/
privacy.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300&display=swap");
body {
font-family: "Rajdhani", sans-serif;
background-color: #0b0e17;
color: #e5e5e5;
margin: 0;
padding: 0;
line-height: 1.6;
overflow-x: hidden;
}
/* Custom Scrollbar */
html::-webkit-scrollbar {
width: 12px;
}
html::-webkit-scrollbar-track {
background: #0e1126;
}
html::-webkit-scrollbar-thumb {
background: linear-gradient(45deg, #0ff0fc, #f72585);
border-radius: 10px;
}
html::-webkit-scrollbar-thumb:hover {
background: linear-gradient(45deg, #f72585, #7209b7);
}
/* Mozilla Firefox scrollbar */
html {
scrollbar-color: #0ff0fc #0e1126;
scrollbar-width: 20px;
}
header {
background: #0b0e17;
color: #0ff0fc;
text-align: center;
padding: 1px 0;
box-shadow: 0 4px 8px rgba(0, 255, 255, 0.1);
position: relative;
z-index: 10;
}
h1 {
font-family: "Orbitron", sans-serif;
font-size: 2em; /* Adjusted for Privacy Policy Title */
letter-spacing: 0.1em;
text-transform: uppercase;
}
main {
padding: 40px;
max-width: 900px;
margin: auto;
position: relative;
background: #0e1126;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
margin-top: 100px;
}
h2 {
color: #0ff0fc;
font-family: "Orbitron", sans-serif;
font-size: 1.8em;
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 2px solid #0ff0fc;
}
p {
font-size: 1.3em;
color: #d3d3d3;
margin: 15px 0; /* Spacing between paragraphs */
}
ul {
font-size: 18px;
padding-left: 20px;
list-style-type: none; /* Remove default bullet points */
}
ul li {
margin: 10px 0;
}
ul li::before {
content: "»";
color: #0ff0fc;
margin-right: 10px;
}
footer {
background: #0b0e17;
color: #999;
text-align: center;
padding: 15px 0;
position: relative;
bottom: 0;
width: 100%;
margin-top: 100px;
}
footer p {
margin-top: 10px;
width: 100%;
font-size: 1.2em;
color: #999;
}
/* Futuristic Hover Effects */
h2:hover {
color: #f72585;
transition: color 0.3s ease;
}
/* Background Effect for Main */
main::before {
content: "";
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
background: linear-gradient(45deg, #0ff0fc, #f72585, #7209b7);
filter: blur(20px);
z-index: -1;
}
/* Interactive elements */
p:hover {
color: #f72585;
transition: color 0.3s ease;
}