@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  margin: 0;
  padding: 0;
}

main {
  max-width: 60ch;
  margin: 0 auto;
  padding: 2rem 1rem;
}

a {
  color: #5a0fa0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 2px solid #f0f0f0;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.post-list {
  margin-top: 1.5rem;
}

.back-link {
  display: block;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 1.0em;
}

html {
  scrollbar-gutter: stable;
}