html {
  color: #fff1e8;
}

@font-face {
  font-family: '04B_03';
  src: url('fonts/04B_03__.woff') format('woff'),
       url('fonts/04B_03__.woff2') format('woff2'),
       url('fonts/04B_03__.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#skyshade {
  pointer-events:none;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 160px;
  background-color: #000000;
  box-shadow: 0px 16px 16px #000000;
}

#sky {
  pointer-events:none;
  position: fixed;
  left: 96px;
  top: 0px;
  height: 128px;
  width: calc(100vw - 192px);
  background-color: #111d35;
  box-shadow: -16px 0px 0px #0b1424,
              16px 0px 0px #0b1424,
              -32px 0px 0px #060a12,
              32px 0px 0px #060a12,
              0px 3px 0px #000000,
              0px 6px 0px #111d35,
              0px 8px 0px #000000,
              0px 10px 0px #111d35;
}

#mountains {
  pointer-events:none;
  position: fixed;
  left: 64px;
  top: 0px;
  width: 512px;
  height: 256px;
  background-image: url('mountains.png');
  background-repeat: no-repeat;
}

#adelie {
  position: fixed;
  left: 112px;
  top: 96px;
  width: 64px;
  height: 64px;
  background-image: url('adelie8x.png');
  background-repeat: no-repeat;
  filter: drop-shadow(-2px -2px 2px #000);
}

#adelie:hover {
  animation: bob 1s;
  -webkit-animation: bob 1s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bob {
  0% {transform: rotate(0deg);}
  10% {transform: translate(0, 4px) scale(1.25, 0.8);}
  19% {transform: rotate(2.939deg);}
  28% {transform: rotate(4.755deg);}
  46% {transform: rotate(2.939deg);}
  55% {transform: rotate(0deg);}
  64% {transform: rotate(-2.939deg);}
  73% {transform: rotate(-4.755deg);}
  91% {transform: rotate(-2.939deg);}
  100% {transform: rotate(0deg);}
}

@keyframes bob {
  0% {transform: rotate(0deg);}
  10% {transform: translate(0, 4px) scale(1.25, 0.8);}
  19% {transform: rotate(2.939deg);}
  28% {transform: rotate(4.755deg);}
  46% {transform: rotate(2.939deg);}
  55% {transform: rotate(0deg);}
  64% {transform: rotate(-2.939deg);}
  73% {transform: rotate(-4.755deg);}
  91% {transform: rotate(-2.939deg);}
  100% {transform: rotate(0deg);}
}

#title {
  pointer-events:none;
  position: fixed;
  left: 192px;
  top: 136px;
  font-family: '04B_03';
  font-size: 32px;
  filter: drop-shadow(2px 2px 0px #000);
}

#menu {
  position: fixed;
  left: 408px;
  top: 112px;
}

#menu a {
  color: #fff1e8;
  position: relative;
  margin-right: 24px;
  font-family: 'fira sans';
  font-weight: bold;
  font-size: 24px;
  filter: drop-shadow(2px 2px 0px #000);
  text-decoration: none;
  transition: all .2s;
}

#menu a:hover {
  top: -1px;
}

#menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff1e8;
  opacity: 1;
  transition: opacity 300ms, transform 300ms;
  transform: scale(0);
  transform-origin: center;
}

#menu a:hover::after, #menu a:focus::after {
  transform: scale(1);
}

body {
  background-color: black;
  font-family: 'fira sans';
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

.content {
  position: absolute;
  padding-top: 16px;
  top: 160px;
  left: 96px;
  width: calc(100% - 96px - 96px);
  height: calc(100% - 160px - 32px);
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.content::-webkit-scrollbar {
  display: none;
}

.content h2 {
  height: 32px;
  text-indent: 48px;
  line-height: 32px;
  background-position: left 0px bottom 4px;
  background-image: url('slidelie4x.png');
  background-repeat: no-repeat;
}

.content p {
  text-indent: 24px;
  text-align: justify;
  text-justify: inter-word;
}

#footer {
  pointer-events:none;
  text-align: center;
  line-height: 24px;
  position: fixed;
  top: calc(100% - 32px);
  width: 100%;
  height: 32px;
  background-color: #000000;
  box-shadow: 0px -8px 8px #000000;
}