-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpacehome.css
150 lines (126 loc) · 2.21 KB
/
pacehome.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
background-color: #f4f4f4;
color: #333;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
/* Header */
header {
background: #000;
color: #fff;
padding: 20px 0;
}
header h1 {
text-align: center;
}
header nav ul {
list-style: none;
padding: 0;
text-align: center;
}
header nav ul li {
display: inline;
margin: 0 15px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
}
header nav ul li a:hover {
text-decoration: underline;
}
/* Hero Section */
.hero {
background: url('https://www.nasa.gov/sites/default/files/thumbnails/image/pace-hero-image.jpg') no-repeat center center/cover;
height: 500px;
color: white;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.hero h2 {
font-size: 3em;
}
.hero p {
font-size: 1.5em;
width: 60%;
margin: 20px auto;
}
.hero .btn {
background: #007BFF;
color: white;
padding: 10px 20px;
text-decoration: none;
font-size: 1.2em;
margin-top: 20px;
}
.hero .btn:hover {
background: #0056b3;
}
/* Section Styles */
section {
padding: 40px 0;
text-align: center;
}
#objectives .objectives-grid,
#instruments .instruments-grid {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.objective, .instrument {
background: white;
padding: 20px;
margin: 20px;
border-radius: 10px;
width: 30%;
}
.objective h3, .instrument h3 {
margin-bottom: 10px;
}
form {
margin-top: 20px;
}
form input[type="email"] {
padding: 10px;
width: 60%;
border-radius: 5px;
border: 1px solid #ddd;
}
form button {
padding: 10px 20px;
background: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
form button:hover {
background: #0056b3;
}
/* Footer */
footer {
background: #000;
color: #fff;
text-align: center;
padding: 20px 0;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}