-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
324 lines (282 loc) · 8.58 KB
/
index.html
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Engineering Portfolio | Mateo Johnson</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #F5F5F5;
color: #2C2C2C;
overflow-x: hidden;
}
a {
text-decoration: none;
color: #2C2C2C;
transition: color 0.3s ease;
}
a:hover {
color: #3A8DFF;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #333;
color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .logo {
width: 50px;
height: 50px;
border-radius: 8px;
object-fit: cover;
margin-right: 15px;
}
header nav a {
margin: 0 15px;
font-weight: bold;
position: relative;
text-transform: uppercase;
color: #fff;
}
header nav a:hover::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 100%;
height: 2px;
background-color: #3A8DFF;
animation: fadeInUp 0.5s ease-in-out;
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 80px 20px;
background-color: #0c7be1;
color: #fff;
animation: fadeInUp 1s ease-out;
position: relative;
background-color: #1E6BAF;
background-size: 400% 400%;
animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.hero h1 {
font-size: 3em;
margin-bottom: 10px;
opacity: 0;
animation: fadeInUp 1s ease-out 0.2s forwards;
}
.hero p {
font-size: 1.5em;
margin-bottom: 20px;
max-width: 600px;
opacity: 0;
animation: fadeInUp 1s ease-out 0.4s forwards;
line-height: 1.6;
}
.hero .button {
padding: 12px 25px;
background-color: #3482C1;
color: #fff;
border-radius: 4px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
transition: transform 0.3s, background-color 0.3s;
opacity: 0;
animation: fadeInUp 1s ease-out 0.6s forwards;
border: 2px solid #3482C1;
}
.hero .button:hover {
background-color: #2871A8;
transform: scale(1.05);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about {
background-color: #fff;
padding: 60px 20px;
text-align: center;
opacity: 0;
transform: translateY(30px);
transition: opacity 1s ease-out, transform 1s ease-out;
font-family: 'Georgia', serif;
color: #333;
}
.about h2 {
font-size: 2.5em;
margin-bottom: 15px;
font-weight: bold;
color: #3482C1;
text-transform: uppercase;
letter-spacing: 2px;
}
.about p {
font-size: 1.2em;
margin-bottom: 30px;
max-width: 800px;
margin: 0 auto;
line-height: 1.7;
text-align: justify;
color: #555;
font-style: italic;
transition: color 0.3s ease;
}
.highlight {
font-weight: bold;
color: #3A8DFF;
background-color: #e6f2ff;
padding: 0 5px;
border-radius: 4px;
transition: all 0.3s ease;
}
.highlight:hover {
color: #fff;
background-color: #2871A8;
text-decoration: underline;
}
.scroll-indicator {
position: absolute;
bottom: 30px;
color: #fff;
font-size: 1.2em;
opacity: 0.7;
animation: bounce 1.5s infinite;
z-index: 1;
font-family: 'Courier New', Courier, monospace;
letter-spacing: 1px;
}
@keyframes bounce {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
footer {
background-color: #333;
color: #fff;
padding: 40px 20px;
text-align: center;
font-size: 1em;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
footer .social-links a {
margin: 0 15px;
font-size: 1.5em;
color: #fff;
transition: color 0.3s ease;
}
footer .social-links a:hover {
color: #3A8DFF;
}
footer .contact-info {
font-size: 1.2em;
margin-top: 20px;
}
footer .contact-info a {
color: #3A8DFF;
}
footer .contact-info a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<img src="https://mateo-johnson.github.io/assets/logo.png" alt="Mateo Johnson Logo" class="logo">
<nav>
<a href="/about">About</a>
<a href="/skills">Skills</a>
<a href="/projects">Projects</a>
<a href="/contact">Contact</a>
</nav>
</header>
<section class="hero">
<h1>Hi, I'm Mateo Johnson</h1>
<p>An aspiring engineer passionate about creating impactful solutions and solving complex technical challenges.</p>
<a href="/projects" class="button">View My Work</a>
<div class="scroll-indicator">⇣ Scroll Down ⇣</div>
</section>
<section class="about" id="about">
<h2>Who am I?</h2>
<p>
I am a passionate and driven high school student with a deep interest in <span class="highlight">engineering</span>, particularly in <span class="highlight">control systems</span>, <span class="highlight">embedded systems</span>, and <span class="highlight">avionics</span>. Throughout my academic journey, I have actively sought opportunities to learn, innovate, and lead. As the captain of my school's <span class="highlight">robotics team</span>, I led the Metrobots to several offseason wins and spearheaded projects like custom robot simulators and team websites, enhancing both performance and strategic abilities.
</p>
<p>
Beyond robotics, I founded <i>Glimmer</i>, an open-source <span class="highlight">visual website builder</span>, and have honed my programming skills through diverse projects ranging from web development to custom drones. I also dedicate over 300 hours to <span class="highlight">STEM outreach</span>, teaching elementary and middle school students, with a focus on increasing diversity in engineering.
</p>
<p>
My long-term goals are centered around using technology to empower underserved communities, creating low-cost, accessible solutions that address real-world challenges. I am eager to further develop my skills through rigorous academic and research experiences, collaborating with like-minded peers, and continuing my journey to make a meaningful impact in both engineering and education.
</p>
</section>
<footer>
<div class="social-links">
<a href="https://www.linkedin.com/in/mateo-johnson-7a39a5334/" target="_blank">LinkedIn</a>
<a href="https://github.com/Mateo-Johnson" target="_blank">GitHub</a>
<a href="https://www.instagram.com/not_mateojohnson" target="_blank">Instagram</a>
</div>
<div class="contact-info">
<p>Contact me at: <a href="mailto:[email protected]">[email protected]</a></p>
</div> <br>
<p>© 2024 Mateo Johnson. All Rights Reserved.</p>
</footer>
<script>
window.addEventListener('scroll', function() {
const aboutSection = document.getElementById('about');
const scrollPosition = window.scrollY + window.innerHeight;
const aboutPosition = aboutSection.offsetTop;
if (scrollPosition > aboutPosition + 150) {
aboutSection.style.opacity = '1';
aboutSection.style.transform = 'translateY(0)';
}
});
const aboutParagraphs = document.querySelectorAll('.about p');
aboutParagraphs.forEach((paragraph) => {
paragraph.addEventListener('mouseenter', () => {
paragraph.style.color = '#3A8DFF';
});
paragraph.addEventListener('mouseleave', () => {
paragraph.style.color = '';
});
});
</script>
</body>
</html>