reactor-control-room/process-design.html

192 lines
5.5 KiB
HTML
Raw Normal View History

2026-07-18 17:19:28 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Process Design — Brandy Meade</title>
<style>
:root {
--neon-pink: #ff00ff;
--neon-blue: #00ffff;
--neon-green: #00ff00;
--dark-bg: #1a1a1a;
--text-color: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Courier New', monospace;
background-color: var(--dark-bg);
color: var(--text-color);
line-height: 1.6;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 3rem;
border-bottom: 3px dashed var(--neon-pink);
padding-bottom: 2rem;
}
h1 {
font-size: 2.5rem;
color: var(--neon-blue);
text-shadow: 2px 2px 4px rgba(0, 255, 255, 0.5);
margin-bottom: 1rem;
}
.content {
max-width: 800px;
margin: 2rem auto;
font-size: 1.1rem;
line-height: 1.8;
}
.content h2 {
color: var(--neon-green);
margin-top: 2rem;
margin-bottom: 1rem;
}
.content p {
margin-bottom: 1.5rem;
}
.quote {
background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue));
padding: 1.5rem;
border-radius: 10px;
text-align: center;
font-size: 1.2rem;
font-style: italic;
color: var(--dark-bg);
margin: 2rem 0;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 3rem 0;
}
.gallery-item {
border: 2px solid var(--neon-pink);
padding: 1rem;
background: rgba(255, 0, 255, 0.1);
border-radius: 10px;
}
.gallery-item img {
width: 100%;
height: auto;
border-radius: 5px;
margin-bottom: 1rem;
}
.gallery-item h3 {
color: var(--neon-blue);
margin-bottom: 0.5rem;
}
.gallery-item p {
font-size: 0.9rem;
color: #cccccc;
}
.back-button {
display: block;
width: 200px;
margin: 3rem auto;
padding: 1rem 2rem;
background: var(--neon-green);
color: var(--dark-bg);
text-align: center;
text-decoration: none;
font-size: 1.2rem;
border-radius: 10px;
transition: transform 0.3s ease;
}
.back-button:hover {
transform: scale(1.05);
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>The Process Design</h1>
<p style="font-size: 1.2rem; color: var(--neon-green);">Where engineering meets art</p>
</header>
<div class="content">
<h2>What is Process Design?</h2>
<p>
In chemical engineering, process design is the choice and sequencing of units for desired physical and/or chemical transformation of materials. But for me, it's so much more than that.
</p>
<p>
Every time I calibrate an instrument at the food plant, I'm doing process design. Every time I sketch a process flow in neon colors, I'm doing process design. And every time I make a mistake — whether it's a glitch in the code or a botched weld — I'm learning something new about the process.
</p>
<div class="quote">
"Every mistake is a chance to teach something new."
</div>
<h2>My Process</h2>
<p>
I start with a problem — maybe it's a machine that's not working right, or a painting that isn't coming out the way I imagined. Then I break it down into steps, just like in the factory.
</p>
<p>
Step 1: Observe. What's happening? What's the pattern?
</p>
<p>
Step 2: Sketch. Draw it out, in neon colors, with every detail.
</p>
<p>
Step 3: Build. Try it, fail, try again.
</p>
<p>
Step 4: Celebrate the mess. Because that's where the magic happens.
</p>
<h2>Gallery of Process</h2>
<div class="gallery">
<div class="gallery-item">
<img src="https://images.pexels.com/photos/36823725/pexels-photo-36823725.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Modern food production facility">
<h3>The Factory Floor</h3>
<p>Every machine is a step in the process. Watch how the parts come together.</p>
</div>
<div class="gallery-item">
<img src="https://images.pexels.com/photos/33501891/pexels-photo-33501891.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Vibrant abstract light streaks">
<h3>The Sketch</h3>
<p>Before the final piece, there's always a sketch. Every line is a step in the design.</p>
</div>
<div class="gallery-item">
<img src="https://images-assets.nasa.gov/image/PIA21695/PIA21695~thumb.jpg" alt="NASA abstract art">
<h3>From Space to Studio</h3>
<p>Even NASA makes abstract art! I take inspiration from everywhere.</p>
</div>
</div>
<h2>Join the Process</h2>
<p>
This isn't just my story — it's yours too. Whether you're a welder, a coder, a painter, or a baker, you're doing process design. Every time you make something, you're part of the design.
</p>
<p>
Come see my other pages — from my first weld to the radish sculpture that went wrong but became art. Because in this corner of the galaxy, every mistake is a masterpiece.
</p>
</div>
<a href="index.html" class="back-button">Back to the Home Page</a>
</body>
</html>