/* 曲学阿世 feat. 白露ヨシナ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-background: #beeef2;
  --color-text: #222222;
  --color-link-hover: mediumblue;
  --color-link-active: orangered;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
}

header {
  padding: 1em;
  background-color: var(--color-background);
}

header a {
  text-decoration: none;
  color: var(--color-text);
}

main {
  padding: 0 5vw;
  color: var(--color-text);
}

main a {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-text);
}

main a:hover {
  color: var(--color-link-hover);
}

main a:active {
  color: var(--color-link-active);
}

main p, main li {
  font-size: 16px;
}

li {
  list-style: none;
}

footer {
  bottom: 0;
  padding: 1em;
  background-color: var(--color-background);
  margin-top: 3em;
}

body > footer {
  -webkit-position: sticky;
  position: sticky;
  top: 100vh;
}
