Update style.css
Browse files
style.css
CHANGED
@@ -1,63 +1,75 @@
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
|
|
6 |
}
|
7 |
|
8 |
h1 {
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
14 |
}
|
15 |
|
16 |
p {
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
}
|
23 |
|
24 |
.card {
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
32 |
}
|
33 |
|
34 |
.card:hover {
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
}
|
39 |
|
40 |
.card p:last-child {
|
41 |
-
|
42 |
}
|
43 |
|
44 |
button {
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
}
|
58 |
|
59 |
button:hover {
|
60 |
-
|
61 |
-
|
62 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
|
|
1 |
body {
|
2 |
+
padding: 2rem;
|
3 |
+
font-family: "Orbitron", "Arial", sans-serif;
|
4 |
+
background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
|
5 |
+
color: #e0e0e0;
|
6 |
+
margin: 0;
|
7 |
}
|
8 |
|
9 |
h1 {
|
10 |
+
font-size: 24px;
|
11 |
+
margin-top: 0;
|
12 |
+
color: #00eaff;
|
13 |
+
text-transform: uppercase;
|
14 |
+
text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
|
15 |
+
text-align: center;
|
16 |
}
|
17 |
|
18 |
p {
|
19 |
+
color: #b0bec5;
|
20 |
+
font-size: 16px;
|
21 |
+
margin-bottom: 10px;
|
22 |
+
margin-top: 5px;
|
23 |
+
line-height: 1.6;
|
24 |
}
|
25 |
|
26 |
.card {
|
27 |
+
max-width: 620px;
|
28 |
+
margin: 0 auto;
|
29 |
+
padding: 20px;
|
30 |
+
border: 1px solid rgba(0, 255, 255, 0.3);
|
31 |
+
border-radius: 16px;
|
32 |
+
background: linear-gradient(145deg, #112233, #334455);
|
33 |
+
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1);
|
34 |
+
text-align: center;
|
35 |
}
|
36 |
|
37 |
.card:hover {
|
38 |
+
box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2);
|
39 |
+
transform: scale(1.02);
|
40 |
+
transition: all 0.3s ease;
|
41 |
}
|
42 |
|
43 |
.card p:last-child {
|
44 |
+
margin-bottom: 0;
|
45 |
}
|
46 |
|
47 |
button {
|
48 |
+
display: block;
|
49 |
+
margin: 20px auto 0;
|
50 |
+
padding: 12px 24px;
|
51 |
+
font-size: 14px;
|
52 |
+
color: #00eaff;
|
53 |
+
background: transparent;
|
54 |
+
border: 2px solid #00eaff;
|
55 |
+
border-radius: 8px;
|
56 |
+
cursor: pointer;
|
57 |
+
text-transform: uppercase;
|
58 |
+
box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5);
|
59 |
+
transition: all 0.3s ease;
|
60 |
}
|
61 |
|
62 |
button:hover {
|
63 |
+
background: #00eaff;
|
64 |
+
color: #0f2027;
|
65 |
+
box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7);
|
66 |
+
}
|
67 |
+
|
68 |
+
iframe {
|
69 |
+
width: 100%;
|
70 |
+
height: 400px;
|
71 |
+
border: none;
|
72 |
+
border-radius: 16px;
|
73 |
+
margin-top: 20px;
|
74 |
+
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
|
75 |
}
|