/* Colors */
:root {
  --bg: #0b0f17;
  --fg: #e5e7eb;
  --muted: #9ca3af;
  --link: #60a5fa;
  --card: #111827;
  --border: #1f2937;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  /* Background image */
  background-image: url("images/bike.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Fallback color under the image */
  background-color: var(--bg);
  color: var(--fg);
}
.wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 100vh;
  max-width: 820px;
  margin: 0 auto;
}
header {
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
header h1 {
  font-size: 1.75rem;
  margin: 0 0 6px;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 14px;
}
nav a:hover {
  color: var(--fg);
  text-decoration: underline;
}
main {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
h2 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
ul {
  padding-left: 20px;
}
a {
  color: var(--link);
}
footer {
  margin-top: 36px;
  padding: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
  background: var(--card);
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}

#bobby-pic img {
  width: 100%;
}
