body {
  background-color: #303446;
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  margin: 0;
  color: white;
}
.navBar {
  float: none;
  position: sticky;
  top: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  background: linear-gradient(to right, #babbf1, #8caaee);
}
.navBar #title a {
  float: left;
  display: block;
  background-color: transparent;
  text-align: center;
  padding: 16px;
  line-height: 20px;
  text-decoration: none;
  font-weight: bold;
  opacity: 1;
  color: white;
  animation-name: barAnimOut;
  animation-duration: 0.05s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
}
.navBar .item a{
  float: left;
  display: block;
  background-color: transparent;
  text-align: center;
  padding: 16px;
  line-height: 20px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  animation-name: barAnimOut;
  animation-duration: 0.05s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: backwards;
}
.navBar #title .active {
    text-decoration: underline;
}
.navBar .item .active {
    text-decoration: underline;
}
.navBar #title a:hover {
    animation-name: barAnim;
    animation-duration: 0.05s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.navBar .item a:hover {
  animation-name: barAnim;
  animation-duration: 0.05s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
.outer {
  background: linear-gradient(to right, #babbf1, #8caaee);
  padding: 6px;
  padding-bottom: 20px;
  border-radius: 0px 0px 16px 16px;
  height: 100%; 
  overflow: auto;
}
.inner {
  background: #303446;
  padding: 25px;
  margin: auto;
  width: 85%;
  height: 100%;
  border-radius: 16px;
  overflow: auto;
}
p {
    line-height: 1.8;
}
hr {
    border-top: 5px solid #c6d0f5; 
    border-radius: 5px;
}
h1 {
    text-align: center;
}
h3 {
    color: #c6d0f5;
}
#neocities {
  padding: 16px;
}
@keyframes barAnim {
  from {font-size: 18px;}
  to {font-size: 20px;}
}
@keyframes barAnimOut {
  from {font-size: 20px;}
  to {font-size: 18px;}
}