-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
125 lines (106 loc) · 1.84 KB
/
index.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
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background-color: #f0f4f7;
color: #333;
line-height: 1.6;
}
/* Hero Section */
.hero {
background-image: url('/Images/kolkata.jpg');
background-size: cover;
background-position: center;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
#Header {
font-family: "Montaga", serif;
font-size: 48px;
color: #ffffff;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}
#header-description {
font-size: 24px;
color: #f7f7f7;
}
/* Activities Section */
.activities-section {
padding: 40px;
background-color: #ffffff;
}
.activities-section h2 {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
}
#unique-activities {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
}
.activity {
width: 220px;
background-color: #e7f3f7;
border-radius: 10px;
padding: 15px;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.activity:hover {
transform: scale(1.05);
}
.activity-image {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 5px;
margin-bottom: 10px;
}
.activity h3 {
font-size: 20px;
margin-bottom: 10px;
color: #005b96;
}
.activity p {
font-size: 16px;
color: #666;
}
/* Guide Section */
#guide-section {
display: flex;
align-items: center;
justify-content: center;
background-color: #f7fafc;
padding: 40px;
}
.avatar {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-right: 20px;
border: 3px solid #005b96;
}
.guide {
max-width: 400px;
}
#name {
font-size: 28px;
margin-bottom: 10px;
color: #333;
}
.Description {
font-size: 18px;
color: #555;
}