-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.css
More file actions
81 lines (70 loc) · 1.4 KB
/
pricing.css
File metadata and controls
81 lines (70 loc) · 1.4 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
/* General styles for the Pricing page */
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #d3f1f7, #e6f7f1);
/* background: linear-gradient(135deg, #f0f8f8, #f5fff5); */
color: #333;
}
html {
scroll-behavior: smooth;
}
header {
display: flex;
justify-content: space-between;
padding: 20px;
background: #203a43;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo {
width: 150px;
cursor: pointer;
}
.pricing-container {
max-width: 1200px;
margin: 50px auto;
padding: 0 20px;
text-align: center;
}
h1 {
font-size: 3rem;
color: #2c3e50;
margin-bottom: 30px;
}
.pricing-message {
background: #fff;
padding: 40px;
border-radius: 15px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-message h2 {
font-size: 2.5rem;
color: #27ae60;
margin-bottom: 15px;
}
.pricing-message p {
font-size: 1.2rem;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
}
footer {
margin-top: 40px;
text-align: center;
}
.back-to-home-btn {
display: inline-block;
padding: 15px 30px;
font-size: 1.2rem;
background-color: #27ae60;
color: white;
border-radius: 50px;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease;
}
.back-to-home-btn:hover {
background-color: #2ecc71;
}