-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (47 loc) · 1.21 KB
/
styles.css
File metadata and controls
53 lines (47 loc) · 1.21 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
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');
body {
background-color: #020617;
color: white;
font-family: 'Plus Jakarta Sans', sans-serif;
scroll-behavior: smooth;
overflow-x: hidden;
}
/* Fond Globe Net mais très Transparent */
#vanta-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.25; /* Contrôle de l'intensité globale du fond */
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #a855f7);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
text-align: center;
margin-bottom: 4rem;
text-transform: uppercase;
letter-spacing: 0.15em;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3b82f6, #a855f7);
margin: 20px auto 0;
border-radius: 10px;
}
.card-glass {
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
section { scroll-margin-top: 100px; }