.zoom-button {
  margin: 5px;
  transition: transform 0.05s;
  width: 100%;
}

.footer {
  width: 100%;
  max-width: 765px;
  bottom: 10px;
  height: 100px;
  position: relative;
  text-align: center;
  box-shadow: 10px 10px 10px black;
  color: white;
}

.link a {
    color: white;
}

.stars-bg {
  background-image: url(/images/stars.png);
}

.link a:hover {
  text-shadow: 0 0 10px white, 0 0 15px white;;
}

.footer a {
  color: white;
  font-size: 13px;
}

.footer a:hover {
  text-shadow: 0 0 10px white;
}

.hidden {
  display: none;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 999;
  background-image: url(/images/Banner.webp);
  background-position: center;
  background-repeat: repeat-x;
}

.banner-left,
.banner-right {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 30px;
}

.text-holder {
  width: 17%;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-right: 15px;
}

.splash-text {
  font-size: 1.3em;
  text-align: center;
  text-shadow: 1px 4px black;
}

.banner-image {
  max-height: 60%;
  width: auto;
  top: -13px;
  position: relative;
  left: 10px;
}

.banner-center {
  display: flex;
  gap: 45px;
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
}

.banner-button {
  width: 100px;
  box-shadow: -5px 5px 8px black;
}

.backdrop {
  background-color: #17144C;
  background-image: url("/PanelPattern.png");
  background-size: 100px;
  box-shadow: 10px 10px 10px black;
  top: 0;
  width: 100%;
  max-width: 1024px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  z-index: -1;
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    display: flex;
    justify-content: space-between;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 999;
    background-color: black;
    background-image: url("/BannerBG.png");
  }
  
  .banner-button {
    width: auto;
    margin: 0;
  }
  .banner-center {
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    left: 0;
    transform: none;
  }

  .banner-image {
    height: 60px;
    margin: 10px;
    left: -12px;
    top: 0;
  }
  
  .splash-text {
  font-size: 1.3em;
  }
  
  .text-holder {
    width: 100%;
  }
}

.zoom-button:hover {
  transform: scale(1.2)
}

.zoom {
  transition: transform 0.05s;
  cursor: pointer;
}

.zoom:hover {
  transform: scale(1.05)
}

body {
  font-family: Verdana;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #525252 #272727;
}

@keyframes static {
    0% { 
      background-position: 0px 0px;
      opacity: 0.5;
    }
    100% { 
      background-position: 0px 4px; 
      opacity: 0.3;
    }
}

body:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background-image: url(/images/OverlayFX.png);
  background-position: 0px 0px;
  animation: static 1s infinite alternate;
}