body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.tm {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}

header {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  color: #555;
}

.form-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #444;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}

1 of 41
Codes 2
Inbox

Zachary Morris <breaddifferently252@gmail.com>
4:08 PM (7 minutes ago)
to me

<header class="hero">
  <h1>Bread Differently<span class="tm">™</span></h1>
  <p class="tagline">Designs that Speak. Merch that Lasts.</p>
  <div class="cta-buttons">
    <a href="#intake" class="btn">Start a Custom Order</a>
    <a href="#collections" class="btn secondary">View Collections</a>
  </div>
</header>


.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #111;
}

.hero .tagline {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn {
  background: #111;
  color: #fff;
}

.btn.secondary {
  background: #eee;
  color: #111;
}

.btn:hover {
  background: #333;
}