/* FONTS */

@font-face {
    font-family: 'Iosevka';
    src: url('../fonts/IosevkaCurlySlab-Regular.ttf');
}

@font-face {
    font-family: 'PixelatedElegance';
    src: url('../fonts/PixelatedEleganceRegular.ttf');
}

@font-face {
    font-family: 'MegamaxJonathanToo';
    src: url('../fonts/MegamaxJonathanToo.ttf');
}

@font-face {
    font-family: 'GoldenBlade';
    src: url('../fonts/GoldenBlade.ttf');
}

@font-face {
    font-family: 'DoctorGlitch';
    src: url('../fonts/Doctor\ Glitch.otf');
}

@font-face {
    font-family: 'Minecraft';
    src: url('../fonts/Minecraft.ttf');
}

@font-face {
    font-family: 'FiftiesMovies';
    src: url('../fonts/Fifties\ Movies.ttf');
}

@font-face {
    font-family: 'Philosopher';
    src: url('../fonts/Philosopher-Regular.ttf');
}

@font-face {
    font-family: 'ZombieHolocaust';
    src: url('../fonts/Zombie_Holocaust.ttf');
}





/* COLOR PALETTE */

:root {
  /* Gruvbox Light Default */
  --bg:         #282828;
  --bg-soft:    #32302f;
  --bg-hard:    #1d2021;
  --fg:         #ebdbb2;
  --fg-soft:    #d5c4a1;
  --fg-hard:    #a89984;

  --red:        #cc241d;
  --green:      #98971a;
  --yellow:     #d79921;
  --blue:       #458588;
  --purple:     #b16286;
  --aqua:       #689d6a;
  --orange:     #d65d0e;

  --bright-red:    #fb4934;
  --bright-green:  #b8bb26;
  --bright-yellow: #fabd2f;
  --bright-blue:   #83a598;
  --bright-purple: #d3869b;
  --bright-aqua:   #8ec07c;
  --bright-orange: #fe8019;
}

[data-theme="dark"] {
  --bg:         #fbf1c7;
  --bg-soft:    #f2e5bc;
  --bg-hard:    #f9f5d7;
  --fg:         #3c3836;
  --fg-soft:    #504945;
  --fg-hard:    #665c54;

  --red:        #9d0006;
  --green:      #79740e;
  --yellow:     #b57614;
  --blue:       #076678;
  --purple:     #8f3f71;
  --aqua:       #427b58;
  --orange:     #af3a03;

  --bright-red:    #cc241d;
  --bright-green:  #98971a;
  --bright-yellow: #d79921;
  --bright-blue:   #458588;
  --bright-purple: #b16286;
  --bright-aqua:   #689d6a;
  --bright-orange: #d65d0e;
}





/* BODY MODIFIERS */

body {
  color: #fbf1c7;
  font-family: Iosevka;
  overflow-x: hidden;
  margin: 0px;
  background-repeat: repeat;
}

selector {
  scrollbar-color: red lightgray;
  scrollbar-width: thin;
}





/* general elements */

.page-contents {
  display: flex;
  justify-content: center;
  border: 1px solid #000000;
  height: auto;
  width: 100%
}

.window {
  position: absolute;
  margin: auto;
}

.titlebar {
  cursor: move;
}

.navigation-bar {
  background: linear-gradient(180deg,rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0.52) 100%);
  box-shadow: 0px 0px 6px 6px #111111;
  background-color:  #060707;
  width: 100%;
  padding: 4px;
  margin-top: 43px;
  padding-left: 117px;
  display: flex;
  flex-flow: row wrap;
  padding-right: 3000px;
}

.nav-button {
  background-color: #202020;
  color: #fbf1c7;
  padding: 18px;
  padding-top: 6px;
  margin: 2px;
  margin-left: 4px;
  margin-right: 4px;
  border-radius: 3px;
  border: 0px solid #504945;
  border-left: 2px solid #504945;
  border-right: 2px solid #504945;
  cursor: pointer;
  top: 10px;
  font-size: 1.2rem;
  height: 40px;
  flex: auto;
  font-family: GoldenBlade;
  transition: 0.6s;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 0rem;
}

.backdrop {
  display: none;
}

@media (min-width: 1301px) {
  .menu-button {
    display: none;
  }
}

@media (max-width: 1300px) {
  .nav-button {
    display: none;
    padding-top: 12px;
  }

  .menu-button {
    position: relative;
    display: block;
    z-index: 999;
    background-color: #202020;
    color: #fbf1c7;
    border: 0px solid #504945;
    border-left: 2px solid #ff7300;
    border-right: 2px solid #51ff00;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
  }

  .backdrop.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    }

  .nav-button.open {
    position: relative;
    width: 90vw;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    background: #222;
    border-left: 2px solid #eb9b5a;
    border-right: 2px solid #8fe06a;
    gap: 1rem;
  }

  .nav-links {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 999;
  }
}

@media (max-width: 1100px) {
  .summary-container,
  .about-container,
  .picks-container,
  .updates-container,
  .gallery-container {
    max-width: none;
    margin: auto;
    padding-bottom: 50px;
  }
}

.crt-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;

  background:
    repeating-linear-gradient(
    transparent 0px,
    transparent 3px,
    rgb(0 0 0 / 12%) 3px,
    rgb(0 0 0 / 15%) 6px
  ),
  radial-gradient(
    ellipse at center,
    transparent 75%,
    rgb(0 0 0 / 15%) 100%
  );
}

.nav-button:hover {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 15px;
  height: 44px;
  padding-top: 8px;
  background-color: #353535;
  border-left: 2px solid #ff7300;
  border-right: 2px solid #51ff00;
  box-shadow: 0px 2px #fbf1c7;
  transform: translateX(-5px);
  transition: 0.15s;
}

.bg-video {
  position: fixed;
  right: 0; top: 0;
  min-width: 100%; min-height: 100%;
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  opacity: 0.5;
  object-fit: cover;
  z-index: -1;
}

.bg-video2 {
  position: absolute;
  right: 0; top: 0;
  min-width: 100%; min-height: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  z-index: -1;
}

.bg-video3 {
  position: absolute;
  right: 0; top: 0vh;
  min-width: 100%; min-height: 500%;
  max-width: 100%;;
  transform: translateY(100vh);
  width: auto; height: auto;
  opacity: 0.625;
  object-fit: cover;
  z-index: -1;
}

.bg-video-fade {
  opacity: 100%;
  animation: fade-in 6s;
  max-width: 100%; max-height: 100%;
  animation-iteration-count: 1;
}

a:visited {
  color:  #fbf1c7;
  text-decoration: none;
}





/* the cube */

.cube-container {
  position: relative;
  top: 60vh;
  left: 38vw;
}

.cube {
  transform-style: preserve-3d;
  animation: cube-spin 4s normal infinite linear;
  position:absolute;
  top: 35px;
  left: 60px;
  transform: rotateX(30deg) rotateY(45deg);
  z-index: 999;
}

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

.side {
  background: #1d2021;
  position: absolute;
  width: 70px;
  height: 70px; 
  transition: 0.3s ease-in-out;
  border: 0px solid #1d2021;
}

.side:hover {
  transition: 0.3s ease-in-out;
  box-shadow: 0px 0px 5px 10000px #000000;
  background-image: none;
}

.back {
  background: #1d2021;
  transform: translateZ(-35px) translateX(-35px) rotateY(180deg);
}

.front {
  background: #1d2021;
  transform: translateZ(35px) translateX(-35px);
}

.left {
  background: #1d2021;
  transform: translateX(-70px) rotateY(-90deg);
}

.right {
  background: #1d2021;
  transform: rotateY(90deg);
}

.top {
  background: #1d2021;
  transform: translateY(-35px) translateX(-35px) rotateX(90deg);
}

.bottom {
  background: #1d2021;
  transform: translateY(35px) translateX(-35px) rotateX(-90deg);
}

@keyframes cube-spin {
  0% {transform: rotateX(-20deg) rotateY(20deg);}
  100% {transform: rotateX(-20deg) rotateY(380deg);}
}





/* mouse effects */

.trail-element {
    position: fixed; /* Keep elements relative to the viewport */
    width: 10px;
    height: 10px;
    background-color: rgba(255, 102, 0, 0.774); /* Semi-transparent white */
    border-radius: 35%;
    pointer-events: none; /* Allow clicks to pass through trail elements */
    opacity: 0; /* Start invisible */
    transition: opacity 0.1s ease-out, transform 0.5s ease-out; /* Fade out and move smoothly */
    z-index: 9999; /* Ensure trail is on top */
}

.trail-element.fade-out {
    opacity: 1;
    transform: scale(0.1); /* Shrink as it fades */
}





/* index page elements */

.index-container {
  text-align: center;
}

.index-subheader {
  position: absolute;
  text-align: center;
}





/* home page elements+ */

.homepage-container {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  min-height: 96vh;
  height: 1000px;
  text-align: center;
  row-gap: 15px;
}

.summary-container {
  position: relative;
  width: 1000px;
  max-width: 95%;
  height: 364px;
  overflow: hidden;
  background-color: #555555;
  border-radius: 8px;
  border: 5px solid #151515;
  box-shadow: 0px 0px 8px 5px #111111;
  padding-bottom: 50px;
}

.summary-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 4px solid #111111;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  font-size: 1.5rem;
  padding-left: 8px;
  height: 45px;
  transform: translateY(-30px) translateX(-2px);
}

.about-container {
  position: relative;
  width: 1000px;
  max-width: 95%;
  height: 500px;
  overflow: hidden;
  background-color: #555555;
  border-radius: 8px;
  border: 5px solid #151515;
  box-shadow: 0px 0px 8px 5px #111111;
  padding-bottom: 50px;
}

.about-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #111111;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  font-size: 1.5rem;
  padding-left: 8px;
  height: 45px;
  transform: translateY(-30px) translateX(-2px);
}

.gallery-container {
  position: relative;
  width: 500px;
  max-width: 95%;
  height: auto;
  overflow: hidden;
  background-color: #555555;
  border-radius: 8px;
  border: 5px solid #151515;
  box-shadow: 0px 0px 8px 5px #111111;
}

.gallery-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #111111;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  font-size: 1.5rem;
  padding-left: 8px;
  height: 45px;
  transform: translateY(-30px) translateX(-2px);
}

.updates-container {
  position: relative;
  width: 425px;
  height: 550px;
  overflow: hidden;
  background-color: #555555;
  border-radius: 8px;
  border: 5px solid #151515;
  box-shadow: 0px 0px 8px 5px #111111;
}

.updates-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #111111;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  font-size: 1.5rem;
  padding-left: 8px;
  height: 45px;
  transform: translateY(-30px) translateX(-2px);
}

.picks-container {
  position: relative;
  width: 1000px;
  height: 350px;
  overflow: hidden;
  background-color: #555555;
  border-radius: 8px;
  border: 5px solid #151515;
  box-shadow: 0px 0px 8px 5px #111111;
}

.picks-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #111111;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  font-size: 1.5rem;
  padding-left: 8px;
  height: 45px;
  transform: translateY(-30px) translateX(-2px);
}

#statuscafe {
    position: absolute;
    top: 110px;
    transform: translateX(100px);
    left: -25px;
    z-index: 2;
}

#statuscafe-username {
    margin-bottom: .5em;
    color: #fe8019;
    text-align: left;
    margin-left: 10px;
    font-size: 0.65rem;
    text-shadow: 1px 1px #000000;
    font-family: MegamaxJonathanToo;
}

#statuscafe-content {
    margin: 0 1em 0.5em 0.25em;
    color: #000000;
    font-family: MegamaxJonathanToo;
    width: 230px;
}

.footer {
  background-color: #000000b0;
  font-family: Philosopher;
  border-right: none;
  border-left: none;
  border-radius: 0px;
  position: absolute;
  top: 1350px;
  width: 100%;
  height: 100px;
  text-align: center;
}

.footer-link {
  font-family: DoctorGlitch;
  text-decoration: none;
  color: #fbf1c7;
  text-shadow: -2px -2px #494949;
}

.footer-link:hover {
  color: #fcae48;
  transition: 0.2s;
  text-shadow: -2px -2px #1d1d1d;
}





/* home page slideshow */

.slideshow-container {
  max-width: 500px;
  position: relative;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(255, 152, 34);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  user-select: none;
  border: 2px solid #00000000;
}

.prev {
  left: 0;
  border-radius: 0 15px 15px 0;
}

.next {
  right: 0;
  border-radius: 15px 0 0 15px;
}

.prev:hover, .next:hover {
  background-color: rgba(40,40,40,0.8);
  color: #fbf1c7;
  border: 2px solid #fbf1c7;
}

.text {
  color: #fbf1c7;
  font-size: 14px;
  background-color: #00000050;
  font-family: Philosopher;
  position: absolute;
  padding: 3px;
  bottom: 4px;
  width: 100%;
  text-align: center;
  text-shadow: 2px 2px #000000;
}

.numbertext {
  position: absolute;
  top: -28px;
  left: 45%;
  color:#fbf1c7;
  text-shadow: 2px 2px 2px #000000;
  font-family: GoldenBlade;
  font-size: 35px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 85px;
  margin: 1px;
  background-color: #282828;
  border-radius: 3px;
  display: inline-block;
  border: 2px solid #111111;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ffbb83;
  border: 2px solid #ff8a2b;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}





/* home page newsticker */

.marquee {
  position: absolute;
  border: none;
  background-color:  #222222d3;
  color: #fbf1c7;
  overflow: hidden;
  left: 0px;
  top: 0px;
  padding-top: 10px;
  width: 100%;
  font-family: MegamaxJonathanToo;
  font-size: 1.1rem;
  height: 33px;
  z-index: 1;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-messages 40s linear infinite;
  position: absolute;
  left: 0;
}

.marquee-content span {
  padding-right: 1000px;
}

@keyframes scroll-messages {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-50%);
  }
}





/* site map page elements */

.site-map-box {
  position: absolute;
  top: 200px;
  background-color: #3f3f3fbd;
  border-radius: 8px;
  border: 5px solid #db9adb;
  box-shadow: 0px 0px 7px 7px #56cdd1;
  width: 1000px;
  height: 1400px;
  padding-bottom: 50px;
  overflow: auto;
  overflow-x: hidden;
}

.site-map-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #db9adb;
  width: 100%;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 10px;
  padding-top: 3px;
  transform: translateY(-26px) translateX(-2px);
}

.site-map-window-option-bar {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #db9adb;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 12px;
  transform: translateY(-50px) translateX(-2px);
}





/* gallery page elements */

.gallery-page-box {
  position: absolute;
  top: 200px;
  background-color: #3f3f3fbd;
  border-radius: 8px;
  border: 5px solid #db9adb;
  box-shadow: 0px 0px 7px 7px #56cdd1;
  width: 4000px;
  max-width: 90%;
  height: auto;
  overflow: auto;
  overflow-x: hidden;
}

.gallery-page-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #db9adb;
  width: 100%;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 10px;
  padding-top: 3px;
  transform: translateY(-26px) translateX(-2px);
}





/* collections page elements */

.collections-box {
  position: absolute;
  top: 100px;
  background-color: #3f3f3fbd;
  border-radius: 8px;
  border: 5px solid #111111;
  box-shadow: 0px 0px 8px 5px #111111;
  width: 1750px;
  height: 400px;
  padding-bottom: 50px;
  overflow: auto;
  overflow-x: hidden;
}

.collections-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #156612;
  width: 100%;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 10px;
  padding-top: 3px;
  transform: translateY(-26px) translateX(-2px);
}

.collections-window-option-bar {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #156612;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 12px;
  transform: translateY(-50px) translateX(-2px);
}





/* collections page speedcubes elements */

.speedcubes-standard-3x3-box {
  position: absolute;
  top: 100px;
  left: 300px;
  background-color: #3f3f3fbd;
  border-radius: 8px;
  border: 5px solid #111111;
  box-shadow: 0px 0px 8px 5px #111111;
  width: 800px;
  height: 240px;
  padding-bottom: 50px;
  overflow: auto;
  overflow-x: hidden;
}

.speedcubes-3x3-stickermods-box {
  position: absolute;
  top: 200px;
  left: 1300px;
  background-color: #3f3f3fbd;
  border-radius: 8px;
  border: 5px solid #111111;
  box-shadow: 0px 0px 8px 5px #111111;
  width: 800px;
  height: 240px;
  padding-bottom: 50px;
  overflow: auto;
  overflow-x: hidden;
}

.speedcubes-title {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #156612;
  width: 100%;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 10px;
  padding-top: 3px;
  transform: translateY(-26px) translateX(-2px);
}

.speedcubes-window-option-bar {
  position: relative;
  background-color: #222222dd;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 3px solid #156612;
  width: 100%;
  font-family: MegamaxJonathanToo;
  text-align: left;
  padding-left: 12px;
  transform: translateY(-50px) translateX(-2px);
}

.speedcube {
  transform-style: preserve-3d;
  position: absolute;
  height: 0px;
  animation: cube-spin 12s normal infinite linear;
  transform: rotateX(30deg) rotateY(45deg);
  z-index: 999;
  transition: 2s ease-in-out;
}

.speedcube:hover {
  animation-play-state: paused;
  transition: 0.3s ease-in-out;
  transform: translateX(200px);
}

.speedcube-side {
  background: #1d2021;
  position: relative;
  top: 80px;
  width: 100px;
  height: 100px;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
  border: 0px solid #1d2021;
}

.speedcube-side:hover {
  transition: 0.3s ease-in-out;
  box-shadow: none;
}

.speedcube-side.back {
  background: #1d2021;
  transform: translateX(-58px) translateZ(-50px);
}

.speedcube-side.front {
  background: #1d2021;
  transform: translateZ(50px) translateX(-274px);
}

.speedcube-side.left {
  background: #1d2021;
  transform: translateX(108px) rotateY(-90deg);
}

.speedcube-side.right {
  background: #1d2021;
  transform: translateX(-116px) rotateY(90deg);
}

.speedcube-side.top {
  background: #1d2021;
  transform: translateY(-50px) translateX(50px) rotateX(90deg);
}

.speedcube-side.bottom {
  background: #1d2021;
  transform: translateY(50px) translateX(266px) rotateX(-90deg);
}




/* shrines page elements */

.shrine-info {
  background-color: #000000b0;
  box-shadow: inset 0px 0px 20px 8px #1d2021;
  top: 231px;
  left: 32px;
  height: auto;
  width: 375px;
  padding: 10px;
  font-family: Philosopher;
  font-size: 1rem;
  text-align: center;
  border-left: none;
  border-right: none;
}

.figurine {
  height: 180px;
  margin-top: 216px;
  transition: 0.25s;
}

.figurine:hover {
  height: 230px;
  margin-top: 166px;
  transition: 0.25s;
  cursor: pointer;
}





/* secret page elements */

.page-container.secret-explanation {
  background: linear-gradient(125deg,rgba(204, 36, 29, 1) 0%, rgba(251, 73, 52, 0.9) 20%, rgba(254, 128, 25, 0.9) 22%, rgba(250, 189, 47, 0.9) 39%, rgba(184, 187, 38, 0.9) 41%, rgba(142, 192, 124, 0.9) 59%, rgba(131, 165, 152, 0.9) 61%, rgba(69, 133, 136, 0.9) 78%, rgba(211, 134, 155, 0.9) 80%, rgba(177, 98, 134, 1) 100%);
  position: absolute;
  padding-left: 2%;
  padding-right: 2%;
  width: 33vw;
  left: 5vw;
  top: 20vh;
  box-shadow: 6px 6px #33302f;
}

.page-container.secret-input {
  background: linear-gradient(125deg,rgba(204, 36, 29, 1) 0%, rgba(251, 73, 52, 0.9) 20%, rgba(254, 128, 25, 0.9) 22%, rgba(250, 189, 47, 0.9) 39%, rgba(184, 187, 38, 0.9) 41%, rgba(142, 192, 124, 0.9) 59%, rgba(131, 165, 152, 0.9) 61%, rgba(69, 133, 136, 0.9) 78%, rgba(211, 134, 155, 0.9) 80%, rgba(177, 98, 134, 1) 100%);
  position: absolute;
  padding-left: 2%;
  padding-right: 2%;
  width: 40vw;
  height: 19vh;
  right: 5vw;
  top: 30.5vh;
  box-shadow: 6px 6px #33302f;
}





/* animations */

@keyframes background-fade {
  0% { background-color: #151515; }
  50% { background-color: #151515; }
  100% { background-color: #15151500; }
}

@keyframes fade-in {
  0% {
    transform: scale(1.2);
    opacity: 0%;
  }
  100% {
    transform: scale(1);
    opacity: 100%;
  }
}

@keyframes glow {
  0% {
    box-shadow: 2px 3px 20px 30px #00000000;
    background-color: #00000000;
  }
  80% {
    box-shadow: 2px 3px 20px 30px #00000000;
    background-color: #00000000;
  }
  90% {
    box-shadow: 2px 3px 20px 30px #fbf1c780;
    background-color: #fbf1c780;
  }
  100% {
    box-shadow: 2px 3px 20px 30px #00000000;
    background-color: #00000000;
  }
}

@keyframes bob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes bob1 {
  0% {
    transform: translateY(0); /* Start at the original position */
  }
  4% {
    transform: translateY(-10px); /* Move up X pixels */
  }
  8% {
    transform: translateY(0); /* Return to the original position */
  }
}

@keyframes bob2 {
  4% {
    transform: translateY(0); /* Start at the original position */
  }
  8% {
    transform: translateY(-10px); /* Move up X pixels */
  }
  12% {
    transform: translateY(0); /* Return to the original position */
  }
}

@keyframes bob3 {
  8% {
    transform: translateY(0); /* Start at the original position */
  }
  12% {
    transform: translateY(-10px); /* Move up X pixels */
  }
  16% {
    transform: translateY(0); /* Return to the original position */
  }
}

@keyframes bob-reversed {
  0% {
    transform: translateY(9px);
  }
  25% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(18px);
  }
  100% {
    transform: translateY(9px);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}