-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-page.css
123 lines (105 loc) · 1.92 KB
/
home-page.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
/* General Styling */
body,
html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
}
.bghome {
background: #1e3a6e;
color: white;
text-align: center;
}
.talent-heading{
margin-top: 10px;
}
.buttonhome{
margin-bottom: 10px;
}
.headinghome {
font-family: 'Pacifico', cursive;
font-size: 90px;
margin: 0;
animation: fadeInDown 2s ease-out;
}
.parahome {
font-size: 1.2em;
letter-spacing: 2px;
margin-top: 10px;
animation: fadeInUp 2s ease-out;
}
.buttonhome {
background: #ffbe0b;
color: #1e3a6e;
font-size: 1em;
border: none;
padding: 10px 25px;
border-radius: 5px;
margin-top: 20px;
cursor: pointer;
transition: background 0.3s ease;
}
.buttonhome:hover {
background: #ffa500;
}
/* Card Styling */
.xhome {
display: flex;
justify-content: center;
padding: 40px 0;
background-color: #f4f4f9;
}
.cardhome {
background: white;
width: 300px;
padding: 20px;
margin: 10px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cardhome:hover {
transform: translateY(-10px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.headingcardhome {
font-size: 1.8em;
color: #1e3a6e;
margin-bottom: 5px;
}
.hrhome {
width: 50px;
height: 2px;
background: #ffbe0b;
border: none;
margin: 10px auto;
}
.cardparahome {
font-size: 0.95em;
line-height: 1.6;
color: #555;
}
/* Animations */
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}