/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

html, body {
  font-family: sans-serif;
}

div.router-page {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #ccaa99;
}

div.router-bg {
  position: fixed;
  z-index: 0;
  height: 100vh;
  width: 100vw;
  background: url("../photo_thumb/0_mofumofu/2_1604364029083.jpg") no-repeat center center fixed;
  background-size: cover;
  filter: blur(5px) sepia(60%) brightness(50%);
}

div.content {
  position: relative;
  z-index: 10;
  height: 100vh;
  max-width: 1000px;
  width: calc(100vw - 100px);
  padding: 50px;
  margin: 0 auto;
  overflow-y: auto;
  color: white;
  text-shadow: 0 2px 2px black;
  font-size: 1.5em;
}

h1 {
  font-size: 2em;
  line-height: 60px;
}

h1 span {
  display: inline-block;
}

ol {
  padding: 5px;
}

ol li {
  padding: 0;
  margin: 5px 0;
  list-style: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
}

ol li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: white;
}

ol li:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fadein {
  animation: fadein 2s;
}

.fadeout {
  animation: fadeout 2s;
  animation-fill-mode: forwards;
}

@keyframes fadein {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes fadeout {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      display: none;
  }
}
