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

html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'EB Garamond', Garamond, Georgia, 'Iowan Old Style', 'Palatino Linotype', serif;
  background: #0F0F0F;
  color: #ECE7DE;
  line-height: 1.8;
  font-size: 20px;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: arrive 800ms ease forwards;
}

@keyframes arrive {
  from { opacity: 0; }
  to { opacity: 1; }
}

::selection {
  background: #8FA3C4;
  color: #0F0F0F;
}

.top-space {
  height: 15vh;
}

.container {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 28px 120px;
}

.site-header {
  text-align: center;
  padding-bottom: 48px;
}

.article-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: #ECE7DE;
}

.rule {
  border: none;
  border-top: 1px solid #2A2A2A;
  margin-bottom: 48px;
}

p {
  margin-bottom: 2em;
  color: #ECE7DE;
}

a {
  text-decoration: underline;
  text-decoration-color: #8FA3C4;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-skip-ink: auto;
  color: #ECE7DE;
}

.contact {
  color: #9A938A;
  font-size: 17px;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 72px;
  margin-bottom: 24px;
  color: #ECE7DE;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2em;
}

li {
  margin-bottom: 0.75em;
  color: #9A938A;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  body { font-size: 18px; }
  .top-space { height: 10vh; }
  .container { padding: 0 20px 80px; }
  .article-title { font-size: 26px; }
  .rule { margin-bottom: 40px; }
  li { font-size: 17px; }
}
