body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;

  /* Make body full height */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: #333;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
}

header h1 a {
  color: #fff;
  text-decoration: none;
}

nav a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: #fff;

  flex: 1;
}

footer {
  text-align: center;
  padding: 0.5rem 0;
  background: #333;
  color: #fff;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

code {
  background-color: #f5f5f5; /* Light gray background */
  color: #d63384;           /* Soft reddish-pink for code text */
  font-family: 'Courier New', Courier, monospace; /* Monospace font */
  padding: 2px 6px;         /* Add padding for better spacing */
  border: 1px solid #e0e0e0; /* Subtle border for separation */
  border-radius: 4px;       /* Rounded corners */
  font-size: 0.95em;        /* Slightly smaller than normal text */
  white-space: nowrap;      /* Prevents wrapping */
}
