body {
  overflow-y: scroll;
  overflow-x: hidden;
}

.bg {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/vignettet.png') no-repeat center center;
  background-size: cover;
  image-rendering: pixelated;
  z-index: -5;
}

.bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/esc.gif') repeat;
  background-size: auto;
  image-rendering: pixelated;
  z-index: -6;
  animation: scroll-bg 20s linear 0s forwards infinite;
}

@keyframes scroll-bg {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: 0px 153px;
  }
}

#logo {
  position: relative;
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-7px);
  }
  50% {
    transform: translateY(7px);
  }
}

#nav {
  font-family: MS Gothic;
  text-align: center;
  background: rgb(122 42 187 / 27%);
  padding: 5px;
  border: 2px solid #2e0c74;
  border-top: 0;
}

#nav a {
  color: var(--green);
  text-decoration: none;
}

.nav a:hover {
  color: #b6fcb6;
  font-style: italic;
  text-decoration: underline wavy;
}

.resources {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.resources img {
  height: 15px;
  margin-right: 4px;
}

.resources a {
  font-weight: bold;
}

.resources li {
  display: flex;
  margin-bottom: 7px;
}

.stamps {
  display: flex;
  animation: stampmarquee 60s linear infinite;
  width: 99px;
  height: 56px;
}

.stamps:hover {
  animation-play-state: paused;
}

@keyframes stampmarquee {
  0% {
    transform: translateX(1px) translateY(0);
  }
  25% {
    transform: translateX(-791px) translateY(0);
  }
  50% {
    transform: translateX(-791px) translateY(0);
  }
  75% {
    transform: translateX(1px) translateY(0);
  }
  100% {
    transform: translateX(1px) translateY(0);
  }
}
/* #container {
  animation: tilt 5s linear infinite;
  animation-timing-function: ease-in-out;
} */
#container:hover {
  animation-play-state: paused;
}

@keyframes tilt {
  0% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

@keyframes size {
  0% {
    transform: rotate(-10deg) scale(1.2);
  }
  50% {
    transform: rotate(-13deg) scale(1.4);
  }
  100% {
    transform: rotate(-10deg) scale(1.2);
  }
}

#logologo {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(31, 31, 31, 1) 14%, rgba(84, 84, 84, 1) 92%, rgba(115, 115, 115, 1) 100%);
  height: 100px;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  font-size: 30px;
  overflow: hidden;
  border: grey 2px solid;
  border-bottom: 1px;
}

#logoscroll {
  animation: logoscroll 10s linear infinite;
  color: white;
  opacity: 0.3;
  font-family: 'Helvetica';
  font-weight: bold;
  text-shadow: 4px 4px 1.5px rgba(0, 0, 0, 0.8);
}

#splash {
  background: linear-gradient(0deg,rgba(90, 35, 35, 1) 33%, rgba(59, 37, 37, 1) 96%);
  border: #9a2121 2px solid;
  height: 30px;
  position: relative;
}

@keyframes logoscroll {
  0% {
    transform: translateX(184.5px) translateY(30px) scale(1.4, 4.2);
  }
  100% {
    transform: translateX(-224px) translateY(30px) scale(1.4, 4.2);
  }
}

.scrollbox-frame {
  background-color: #323336;
  height: 160px;
  width: auto;
  overflow: scroll;
  overflow-x: hidden;
  border-radius: 15px;
  border: 1px solid var(--blue);
  text-shadow: 0 0 0;
}
        
.list {
  font-size: 13px;
  text-align: left;
  padding: 0 10px 0 10px;
  font-family: 'MS Gothic';
}

.webrings {
  height: 173px;
  overflow-x: hidden;
  overflow: scroll;
  width: 164px;
}

.webrings img:hover {
  transform: none;
}