-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
158 lines (128 loc) · 2.81 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
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
margin: 0;
color: #333;
background-color: #f4f4f4;
}
header {
background: #7D5BA6; /* Deep Lavender */
color: #ffffff;
text-align: center;
padding: 1em 0;
}
section {
padding: 2em;
text-align: center;
transition: background-color 0.3s;
}
section:nth-child(even) {
background-color: #C3B1E1; /* Light Lavender */
}
section:nth-child(odd) {
background-color: #F0E6EF; /* Off White */
}
section:hover {
background-color: #B8A9C9; /* Lighter Lavender */
}
h1, h2 {
color: #5D3754; /* Dark Purple */
margin-bottom: 0.5em;
}
p {
color: #5D5474; /* Dark Grey */
}
footer {
text-align: center;
padding: 1em 0;
background: #7D5BA6; /* Deep Lavender */
color: #ffffff;
}
.team-member {
text-align: center;
margin-bottom: 20px;
}
.team-member img {
width: 100px; /* Adjust as needed */
height: 100px; /* Adjust as needed */
border-radius: 50%; /* Circular images */
}
header nav ul {
list-style: none;
text-align: center;
padding: 0;
}
header nav ul li {
display: inline;
margin: 0 10px;
}
header nav ul li a {
text-decoration: none;
color: #fff;
}
header nav ul li a:hover {
color: #ddd;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #7D5BA6;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
.cta-button:hover {
background-color: #367c39; /* Darker shade for hover */
color: #fff;
}
/* Existing styles */
.full-screen {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column; /* Stack items vertically */
text-align: center;
}
.intro-content h2, .intro-content p {
margin-bottom: 20px;
}
#intro {
background: url('copywriting-background.jpg') no-repeat center center/cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
#services {
background-color: #f0f0f0; /* Light grey background */
padding: 2em;
}
.service {
margin-bottom: 20px;
}
.service-row {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-bottom: 20px; /* Space between rows */
}
.service-column {
flex: 1;
min-width: 30%; /* Adjust based on how many columns per row */
max-width: 45%; /* Adjust for maximum width */
text-align: center;
padding: 10px;
}
.service-column h3 {
color: #7D5BA6; /* Your chosen color for headings */
margin-bottom: 5px;
}
.service-column p {
color: #333; /* Text color for descriptions */
}
/* Rest of your CSS... *
/* Additional styles for buttons, links, etc., can be added here */