/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", serif;
  color: white;
  background: black;
}

/* TOP */
section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BLOG */
.blog-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px;
}

.post {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.post a {
  color: white;
  text-decoration: none;
}