-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (120 loc) · 2.59 KB
/
styles.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
:root {
--primary-red: #cc0000;
--dark-bg: #111111;
--text-light: #ffffff;
--accent-gray: #333333;
}
body {
margin: 0;
padding: 0;
background-color: var(--dark-bg);
color: var(--text-light);
/* Privacy-focused font stack using system fonts */
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
overflow-x: hidden;
}
.loading-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 2rem;
text-align: center;
}
@keyframes fadeIn {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0%);
opacity: 1;
}
}
.fade-in-text {
font-size: 2rem;
margin: 0 0 2rem;
color: var(--primary-red);
animation: fadeIn 2s forwards;
font-weight: 700;
letter-spacing: 0.05em;
}
@keyframes delayedFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.delayed-fade-in {
font-size: 2rem;
margin: 0 0 2rem;
opacity: 0;
animation: delayedFadeIn 2s forwards;
animation-delay: 2s;
font-weight: 700;
}
.risks-container {
opacity: 0;
animation: delayedFadeIn 2s forwards;
animation-delay: 4s;
max-width: 800px;
margin: 2rem auto;
padding: 2rem;
background: var(--accent-gray);
border-radius: 4px;
}
.risk-item {
margin: 1rem 0;
padding: 1rem;
border-left: 4px solid var(--primary-red);
background: rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.risk-item:hover {
transform: translateX(10px);
}
.risk-item h3 {
color: var(--primary-red);
margin-top: 0;
}
.cta-button {
display: inline-block;
padding: 1rem 2rem;
margin-top: 2rem;
background-color: var(--primary-red);
color: var(--text-light);
text-decoration: none;
border-radius: 4px;
transition: transform 0.3s ease;
opacity: 0;
animation: delayedFadeIn 2s forwards;
animation-delay: 6s;
font-weight: 600;
}
.cta-button:hover {
transform: scale(1.05);
background-color: #ff0000;
}
.logo {
width: 75px;
height: 75px;
margin: 2rem;
opacity: 0;
animation: delayedFadeIn 2s forwards;
animation-delay: 2s;
transition: transform 0.3s ease;
}
.logo:hover {
transform: rotate(360deg);
}
@media only screen and (max-width: 675px) {
.fade-in-text, .delayed-fade-in {
font-size: 1.2rem;
}
.risk-item {
font-size: 0.9rem;
}
.risks-container {
padding: 1rem;
margin: 1rem;
}
}