/* FRAME */
.marquee {
  position: fixed;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
  background-color: #0000ff;
  color: white;
  height: 1.5rem;
}
@media (min-width: 600px) {
  .marquee {
    height: 1.5rem;
  }
}
@media (min-width: 900px) {
  .marquee {
    height: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .marquee {
    height: 1.5rem;
  }
}

.marquee span {
  display: inline-block;
  font-family: "Arnold Regular", monospace;
  font-variant-caps: small-caps;
  font-size: 0.85rem;
  line-height: 1.4rem;
  padding-left: 100%;
  animation: marquee linear infinite;
  color: white;
}

.marquee span a {
  color: white;
  text-decoration: none;
}

.marquee span a:hover {
  font-variant-caps: normal;
}

.marquee span a:visited, .marquee span a:active {
  color: white;
}

@keyframes marquee {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.corner {
  z-index: 2;
  background-color: #0000ff;
  position: fixed;
  display: none;
  height: 1.5rem;
  width: 1.5rem;
}
@media (min-width: 600px) {
  .corner {
    height: 1.5rem;
    width: 1.5rem;
  }
}
@media (min-width: 900px) {
  .corner {
    height: 1.5rem;
    width: 1.5rem;
    display: block;
  }
}
@media (min-width: 1200px) {
  .corner {
    height: 1.5rem;
    width: 1.5rem;
    display: block;
  }
}

.scroll_top, .scroll_btm {
  top: 0;
  left: 0;
  width: 100vw;
}
@media (min-width: 600px) {
  .scroll_top, .scroll_btm {
    left: 0;
    width: 100vw;
  }
}
@media (min-width: 900px) {
  .scroll_top, .scroll_btm {
    left: 1.5rem;
    width: calc(100vw - 3rem);
  }
}
@media (min-width: 1200px) {
  .scroll_top, .scroll_btm {
    left: 1.5rem;
    width: calc(100vw - 3rem);
  }
}

.scroll_btm {
  top: initial;
  bottom: 0;
}

.scroll_rgt {
  top: 0;
  left: calc(100vw - 1.5rem);
  width: calc(100vh - 3rem);
  display: none;
}
@media (min-width: 600px) {
  .scroll_rgt {
    left: calc(100vw - 1.5rem);
    width: calc(100vh - 3rem);
  }
}
@media (min-width: 900px) {
  .scroll_rgt {
    left: calc(100vw - 1.5rem);
    width: calc(100vh - 3rem);
    display: block;
  }
}
@media (min-width: 1200px) {
  .scroll_rgt {
    left: calc(100vw - 1.5rem);
    width: calc(100vh - 3rem);
    display: block;
  }
}
.scroll_rgt {
  transform: rotate(90deg);
  transform-origin: bottom left;
}

.scroll_lft {
  top: 0;
  left: 0;
  width: calc(100vh - 3rem);
  display: none;
}
@media (min-width: 600px) {
  .scroll_lft {
    width: calc(100vh - 3rem);
  }
}
@media (min-width: 900px) {
  .scroll_lft {
    width: calc(100vh - 3rem);
    display: block;
  }
}
@media (min-width: 1200px) {
  .scroll_lft {
    width: calc(100vh - 3rem);
    display: block;
  }
}
.scroll_lft {
  transform: rotate(90deg);
  transform-origin: bottom left;
}