/* BAD CSS: No reservations, no constraints */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: #333;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
   a {
     color: white;
   }
}

main {
  padding-top: 80px; /* Just enough to clear header */
  max-width: 600px;
  margin: 0 auto;
}

section {
  margin-bottom: 2rem;
  border: 1px solid #ddd;
  padding: 1rem;
}

/* ISSUE: No aspect ratio reserved */
img {
  width: 100%;
  display: block;
}

/* ISSUE: Smooth scrolling doesn't fix the header offset */
html {
  scroll-behavior: smooth;
}


#lateScrollbar {
  display: none;
  height: 101vh;
}