-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (116 loc) · 2.8 KB
/
style.css
File metadata and controls
133 lines (116 loc) · 2.8 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
@import url(https://fonts.googleapis.com/css2?family=Varela+Round&display=swap);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Varela Round', sans-serif;
background: linear-gradient(180deg, #050a30, #02224c, #024363);
min-height: 100vh;
color: #ffffff;
}
header {
background: rgba(1, 0, 18, 0.95);
backdrop-filter: blur(10px);
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
color: #ffffff;
border-radius: 10px;
}
footer {
background: rgba(1, 0, 18, 0.95);
backdrop-filter: blur(10px);
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
color: #ffffff;
border-radius: 10px;
}
.logo {
font-size: 1.6rem;
font-weight: 700;
color: #ffffff;
}
nav {
display: flex;
gap: 3rem;
align-items: center;
}
nav a {
color: #ffffff;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: color 0.3s ease;
position: relative;
}
nav a:hover {
text-decoration: underline;
padding-bottom: 5px;
}
main {
max-width: 1600px;
margin: 3rem auto;
padding: 0 1rem;
}
.page-title {
font-size: 3rem;
font-weight: 700;
color: #ffffff;
margin-bottom: 3rem;
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
h1{
text-align: center;
color: #ffffff;
font-size: 3.5rem;
}
section {
display: flex;
flex-direction: column;
backdrop-filter: blur(10px);
background-color: rgba(215, 203, 203, 0.08);
padding: 2rem;
margin-bottom: 2rem;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
section h2 {
color: #c2c3c5;
font-size: 1.5rem;
margin-bottom: 1.5rem;
font-weight: 600;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
gap: 1rem;
}
.sim-button {
background: #05040d;
color: #ffffff;
text-decoration: none;
padding: 1.2rem;
border-radius: 8px;
font-weight: 600;
font-size: 1.1rem;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 255, 0.3);
}
.sim-button:hover {
background: linear-gradient(135deg, #2175a3 0%, #050a30 100%);
transform: translateY(-3px);
box-shadow: 0 8px 16px #afdbf5;
}
.descrp{
margin: 5rem;
font-size: 3rem;
}