/* Home button styles */
.home-button {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: none;
  color: #333;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  z-index: 1000;
}

.home-button:hover {
  color: #666;
}

/* Add a small margin to the body to prevent content from being hidden behind the button */
body {
  margin-top: 3rem;
}

/* Base font size adjustments */
body {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Adjust heading sizes proportionally */
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.1rem; }

/* Adjust code blocks to maintain readability */
pre, code {
  font-size: 0.95rem;
}
  