forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (77 loc) · 1.42 KB
/
style.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
.impact-gallery {
text-align: center;
margin: 40px 0;
}
.gallery {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.gallery-item {
width: 30%;
margin: 10px;
transition: transform 0.3s;
}
.gallery-item:hover {
transform: scale(1.05);
}
.gallery-item img {
width: 100%;
aspect-ratio: 16/9; /* Maintain a 16:9 aspect ratio */
object-fit: cover; /* Ensure the image covers the container without distortion */
border-radius: 8px;
}
#fontt {
font-size: 30px;
font-style: normal;
}
.donation-section {
text-align: center;
margin: 40px 0;
}
.card-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.card {
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 1px 10px #91be55;
margin: 20px;
padding: 20px;
width: 250px;
transition: transform 0.3s;
}
.card:hover {
transform: scale(1.02);
}
.card h2 {
color: #5a5a5a;
}
.amount {
font-size: 1.5em;
margin: 10px 0;
color: #2c3e50;
}
.benefits {
font-size: 0.9em;
color: #7f8c8d;
margin: 15px 0;
}
.donate-button {
background-color: #91be55;
border: none;
border-radius: 5px;
color: white;
cursor: pointer;
padding: 10px 20px;
font-size: 1em;
transition: background-color 0.3s;
}
.donate-button:hover {
background-color: #2980b9;
}
.boxx {
font-size: 27px;
}