/* Base reset */
* {
  box-sizing: border-box;
}

img, video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

body {
  margin: 0;
  padding: 2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #111;
}

/* Navigation */
nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: inherit;
}

nav a:hover {
  text-decoration: underline;
}

/* Content width */
main {
  max-width: 700px;
  margin: 0 auto;
}

/* Blog list */
ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}
