-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
153 lines (128 loc) · 2.74 KB
/
styles.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
/* Reset some default styles */
body, h1, h2, h3 {
margin: 0;
padding: 0;
font-family: 'Lobster', cursive
}
body {
font-family: 'Poppins', sans-serif; /* Use a Google Font (Poppins) */
}
/* Full-page animation */
.intro-container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #333;
}
#animated-text {
font-size: 4rem; /* Increased font size */
color: #fff;
overflow: hidden;
white-space: nowrap;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
/* Team section */
.team-section {
padding: 50px;
text-align: center;
background-color: #f2f2f2;
}
.team-heading {
font-size: 3rem; /* Increased font size */
margin-bottom: 20px;
font-family: 'Lobster', cursive;
}
.team-members {
display: flex;
justify-content: center;
align-items: center;
}
.team-member {
margin: 20px;
text-align: center;
}
.team-member img {
width: 200px;
height: 200px;
border-radius: 50%;
}
.team-member h3 {
margin-top: 10px;
font-size: 2rem; /* Increased font size */
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
margin: 0 10px;
text-decoration: none;
color: #333;
}
/* Add more styling as needed */
/* Creative Font */
.creative-font {
font-family: 'Lobster', cursive; /* Use a Google Font (Lobster) */
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1em 5%;
background-color: #2c3e50;
color: white;
}
.logo {
font-weight: bold;
font-size: 24px;
}
nav a {
margin-left: 20px;
color: white;
text-decoration: none;
transition: opacity 0.3s;
}
nav a:hover {
opacity: 0.7;}
#hero {
background-image: url('traffic-background.jpg'); /* Add a relevant background image */
background-size: cover;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.feature-card {
background-color: white;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
border-radius: 7px;
padding: 20px;
margin: 10px 0;
}
footer {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 1em 0;
margin-top: 20px;
}
a{
font-family: 'Lobster', cursive;
}
div{
font-family: 'Lobster', cursive;
}