-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (71 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (71 loc) · 1.28 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
/* RESET + BASE */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #f5f7fb;
color: #222;
}
/* HERO SECTION */
.hero {
min-height: 100vh; /* full screen */
display: flex;
flex-direction: column;
justify-content: center; /* vertical center */
align-items: center; /* horizontal center */
text-align: center;
padding: 20px;
}
/* TEXT */
.hero h1 {
font-size: 42px;
margin-bottom: 15px;
}
.hero p {
font-size: 18px;
color: #555;
margin-bottom: 30px;
line-height: 1.5;
}
/* BUTTONS */
.btn-group {
display: flex;
gap: 15px;
flex-wrap: wrap;
justify-content: center;
}
.btn {
text-decoration: none;
background: #2563eb;
color: white;
padding: 14px 26px;
border-radius: 8px;
font-size: 16px;
transition: all 0.3s ease;
}
.btn:hover {
background: #1e40af;
transform: translateY(-3px);
}
.btn.secondary {
background: #22c55e;
}
.btn.secondary:hover {
background: #15803d;
}
/* MOBILE FIX */
@media (max-width: 768px) {
.hero h1 {
font-size: 30px;
}
.hero p {
font-size: 16px;
}
.btn {
width: 100%;
text-align: center;
}
}