-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
217 lines (193 loc) · 4.9 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
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
*{
margin:0;
padding:0;
}
nav {
background-color: #b11b78;
padding: 8px;
text-align: center;
overflow:hidden;
position:sticky;
}
nav a {
color: rgb(255, 255, 255);
float:right;
text-decoration: none;
margin: 0 15px;
padding:10px 12px;
border-radius: 30px;
transition: background-color 0.3s ease; /* Apply a transition for opacity */
}
/* Hover effect */
nav a:hover {
color:antiquewhite;
background-color: #6633ff;
text-decoration: none;
}
.navbar-icon {
color: white;
float:left;
padding:5px 0 0 10px;
left:19px;
top:10px;
font-size:23px;
}
#carouselExample {
width: 100%;
margin: auto; /* Center the carousel */
overflow: hidden;
max-height: 100vh; /* Set a maximum height to fit within 80% of the viewport height */
}
.carousel-inner {
width: 100%;
height:550px;
}
.carousel-inner img {
width: 100%;
max-height: 100%; /* Ensure the image does not exceed the carousel height */
justify-content:center;
}
.inspire{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin-bottom:400px;
font-weight:bolder;
font-size:240px;
text-align:center;
z-index:2;
position: absolute;
top: 400px;
left:320px;
justify-content:center;
background-image: linear-gradient(to right, #ff3366, #6633ff);
color: transparent;
-webkit-background-clip: text; /* For Safari/Chrome */
background-clip: text;
}
.quote{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 40px;
display:block;
margin-left:240px;
margin-right:240px;
word-spacing:10px;
}
.card-container {
display: flex;
flex-wrap:wrap;
justify-content: space-around;
padding:100px 200px 100px 200px;
background: linear-gradient(45deg, #b493c3, #9e71cee1);
}
/* Styling for each card */
.card {
width: 420px;
height:300px;
border: 3px solid #000000;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s ease;
margin:20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Hover effect for each card */
.card:hover {
transform: scale(1.05);
box-shadow: 6px 6px 6px 6px rgba(0, 0, 0, 1); /* Increase size on hover */
}
/* Styling for the card image */
.card img {
width: 100%;
height: 200px;
object-fit: cover;
}
/* Styling for the card content */
.card-content {
padding: 5px 0 0 12px;
text-align: left;
font-family: Georgia, 'Times New Roman', Times, serifs;
}
/* Styling for the explore link */
.explore-link {
margin-top: 1px;
text-decoration: none;
color: #007bff;
font-weight: bold;
}
.text{
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-weight:3px;
text-align:center;
letter-spacing: 5px;
font-size:35px;
}
.image-grid {
display: grid;
padding:200px;
margin-top:40px;
margin-bottom:40px;
grid-template-columns: repeat(3, 1fr); /* 3 columns */
gap: 4px; /* Adjust the gap between images */
justify-content: center;
background: linear-gradient(45deg, #d3b2f5, #a65af8);
img{
width:400px;
height:400px;
}
}
/* Styling for each image */
.image {
transition: transform 0.3s ease;
width: 400px; /* Ensure images take the full width of their container */
height:400px; /* Maintain the aspect ratio of the images */
/* Optional: Add rounded corners */
overflow: hidden; /* Hide any overflowing content (for images with different aspect ratios) */
}
.image:hover {
transform: scale(1.05); /* Increase size on hover */
}
.container-fluid {
text-align: center;
padding:20px;
margin-top:40px;
margin-bottom:40px;
background: linear-gradient(45deg, #d3b2f5, #a65af8);
}
/* Styling for the video container */
.video-container {
padding:15px;
width: 1000px;
height:500px;
max-width: 800px;
margin: 20px auto;
}
/* Styling for the video */
iframe {
width: 100%;
height: 100%;
}
footer {
background-color: #333334;
color: #ffffff;
padding: 20px;
text-align: center;
}
/* Styling for social links */
.social-links {
margin-top: 10px;
}
.social-links a {
display: inline-block;
margin: 0 10px;
color: #fff;
text-decoration: none;
font-size: 20px;
}
/* Social link icons (font awesome used for demonstration) */
.social-links i {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
border: 1px solid #fff;
border-radius: 50%;
}