-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
125 lines (107 loc) · 2.08 KB
/
styles.css
File metadata and controls
125 lines (107 loc) · 2.08 KB
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
:root {
--primary-color: #0A2757;
--accent-color: #F5E6C3;
--text-color: #333;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
}
/* Navbar Styles */
.navbar {
background-color: var(--primary-color);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: var(--white);
text-decoration: none;
}
.contact-btn {
background-color: var(--accent-color);
border: none;
padding: 0.5rem 1.5rem;
border-radius: 4px;
cursor: pointer;
}
/* Hero Section */
.hero {
background-color: var(--primary-color);
padding: 8rem 5% 4rem;
text-align: center;
color: var(--white);
background-image: linear-gradient(rgba(10, 39, 87, 0.9), rgba(10, 39, 87, 0.9)), url('grid-pattern.png');
}
.hero h1 {
font-size: 3rem;
margin: 1rem 0;
}
/* Contact Section */
.contact-section {
display: grid;
grid-template-columns: 1fr 1fr;
padding: 4rem 5%;
gap: 2rem;
}
.form-container h2 span {
color: #0066ff;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
}
.submit-btn {
background-color: #0066ff;
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: 4px;
width: 100%;
cursor: pointer;
}
/* Footer Styles */
footer {
background-color: var(--primary-color);
color: var(--white);
padding: 4rem 5% 1rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
.footer-col ul {
list-style: none;
}
.footer-col a {
color: var(--white);
text-decoration: none;
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}