:root {
  --bg: #fdfaf6;
  --text: #2e2e2e;
  --accent: #8b5e3c;
  --font: 'Helvetica Neue', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 1rem;
}

header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.tagline {
  font-style: italic;
  color: var(--accent);
}

main {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 1rem;
}

button:hover {
  background: #6f472c;
}

footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #777;
}
/* Paragraph styling */
.powered-by {
  margin-top: 1.5rem;         /* mt-6 */
  font-size: 0.75rem;         /* text-xs */
  color: #9CA3AF;             /* text-gray-400 */
  text-align: center;         /* text-center */
}

/* Link styling */
.powered-by a {
  text-decoration: underline; /* underline */
  color: #9CA3AF;             /* match paragraph color */
  transition: color 0.3s ease;
}

.powered-by a:hover {
  color: #4B5563;             /* hover:text-gray-600 */
}
