-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
41 lines (36 loc) · 843 Bytes
/
index.css
File metadata and controls
41 lines (36 loc) · 843 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
background: #f4f6f9;
margin: 20px;
}
/* Heading Style */
h2 {
color: #2c3e50;
text-align: center;
padding: 12px;
border-bottom: 2px solid #ddd;
margin-bottom: 20px;
font-weight: 600;
letter-spacing: 1px;
}
/* Links as button-style */
a {
display: block;
text-decoration: none;
color: #34495e;
background: #ecf0f1;
padding: 12px;
margin: 8px 0;
border-radius: 10px;
font-weight: 500;
transition: all 0.3s ease;
text-align: center;
}
/* Hover effect */
a:hover {
background: #3498db;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}