-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
144 lines (125 loc) · 2.48 KB
/
Copy pathindex.css
File metadata and controls
144 lines (125 loc) · 2.48 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
135
136
137
138
139
140
141
142
143
* {
margin: 0;
padding: 0;
font-family: 'Quicksand', sans-serif;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
.main{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
body {
background: linear-gradient(to right, #0b0a0a, #292336, #181818);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.navmain{
display: flex;
justify-content: center;
align-items: center;
padding-top: 30px;
}
.navbar {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
background: rgba(24, 27, 39, 0.25);
border: 1px solid rgba(24, 27, 39, 0.3);
backdrop-filter: blur(10px);
padding: 10px 25px;
border-radius: 25px;
width: fit-content;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}
.navbar a {
color: white;
text-decoration: none;
font-weight: 600;
font-size: 16px;
padding: 8px 12px;
border-radius: 20px;
transition: color 0.3s ease, transform 0.2s ease;
}
.navbar a:hover {
color: #da9696;
transform: scale(1.08);
}
.navbar a.active {
background: linear-gradient(to right, #ff416c, #ff4e00);
color: white;
}
.hero {
text-align: center;
padding: 100px 20px 60px;
color: #ffffff;
}
.hero h1 {
font-size: 64px;
font-weight: 800;
margin-bottom: 20px;
}
.hero p {
font-size: 20px;
max-width: 700px;
margin: 0 auto 40px;
color: #cccccc;
line-height: 1.6;
}
button.secondary-btn {
padding: 14px 24px;
font-size: 1rem;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
color: white;
cursor: pointer;
transition: all 0.3s ease;
}
button.secondary-btn:hover {
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.3);
}
.footer {
width: 100%;
background: rgba(24, 27, 39, 0.25);
border-top: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.02);
color: #ffffffb0;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
padding: 16px 20px;
margin-top: auto;
gap: 15px;
border-radius: 25px 25px 0 0;
}
.social-footer {
display: flex;
gap: 25px;
}
.social-footer a {
color: #ffffffcc;
font-size: 18px;
transition: color 0.3s ease, transform 0.2s ease;
}
.social-footer a:hover {
color: #da9696;
transform: scale(1.04);
}
.footer-text {
font-size: 15px;
color: #bbb;
}