-
Notifications
You must be signed in to change notification settings - Fork 2
/
terms.css
154 lines (128 loc) · 2.29 KB
/
terms.css
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
body {
margin: 0;
font-family: Arial, sans-serif;
overflow-x: hidden;
background-color: #f9f9f9;
line-height: 1.6;
}
.logo{
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
}
.logo img{
max-width: 200px;
height: auto;
}
a{
text-decoration: none;
color: inherit;
padding: 3px 31px;
}
a:hover{
text-decoration: underline;
}
header{
background-color: black;
color: white;
padding: 15px 20px;
}
header nav{
display: flex;
justify-content: center;
gap: 20px;
}
header nav a{
color: white;
font-size: 1.1rem;
transition: color 0.3s ease;
}
header nav a:hover {
color: #4CAF50;
}
footer {
background-color: #000000;
color: white;
padding: 40px 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.footer-section {
margin-bottom: 10px;
}
.footer-sec h3 {
border-bottom: 2px solid #4CAF50;
padding-bottom: 10px;
margin-bottom: 20px;
}
.footer-sec ul {
list-style-type: none;
padding: 0;
}
.footer-sec ul li {
margin-bottom: 15px;
}
.footer-sec ul li a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-sec ul li a:hover {
color: #4CAF50;
}
.footer-quote {
text-align: center;
margin-top: 40px;
font-style: italic;
}
.footer-quote p {
margin: 10px 0;
margin-bottom: 15px;
}
.logo-footer {
top: 20px;
font-size: 2em;
font-weight: bold;
text-transform: uppercase;
color: white;
text-shadow: 2px 2px 4px #4CAF50;
text-align:bottom;
}
/* terms and condition */
.terms-container {
margin-top: 0px;
max-width: 80%;
margin: 50px auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 8px;
}
.terms-container h1 {
font-size: 2em;
text-align: center;
color: #4CAF50;
margin-bottom: 20px;
}
.terms-container h2 {
font-size: 1.5em;
color: #333;
margin-top: 20px;
margin-bottom: 10px;
}
.terms-container p {
font-size: 1.1em;
line-height: 1.6;
color: #555;
margin-bottom: 15px;
}
.terms-container ul {
padding-left: 20px;
}
.terms-container ul li {
margin-bottom: 10px;
font-size: 1.1em;
color: #555;
}