.panel {
  border: 20px solid;
  border-image-source: url("/images/SitePanel.png");
  border-image-slice: 30 fill;
  border-image-repeat: stretch;
  box-sizing: border-box;
  position: relative;
  filter: drop-shadow(0 0 4px white);
  padding: 33px 20px 0;
  color: white;
}

#page-link-container {
  display: flex;
  padding-top: 15px;
  justify-content: center;
  gap: 20px;
}

.video-ui-button {
  text-align: center;
  background-color: white;
  box-sizing: border-box;
  border: outset white 1mm;
  text-decoration: none;
  color: black;
  width: 35px;
  align-content: center;
  user-select: none;
  margin: 0 3px;
  flex: 1;
  font-size: 15px;
}

.video-ui-slider {
  -webkit-appearance: none; 
  appearance: none;
  width: 100%; 
  background: #d3d3d3;
  outline: none; 
  opacity: 0.7; 
  transition: opacity .2s;
}

.video-ui-slider:hover {
  opacity: 1;
}

.video-ui-slider::-moz-range-progress {
  background: #747474;
  height: 100%;
}

.video-ui-slider::-webkit-slider-thumb,.video-ui-slider::-moz-range-thumb {
  width: 15px;
  height: 100%;
  background: #AE372B;
  border-radius: 0;
  cursor: pointer;
  border: none;
}


.link-tab {
  position: absolute;
  top: -57px;
  right: -8px;
}

.about-tab {
  position: absolute;
  top: -26px;
  left: 6px;
}

.header {
  align-content: center;
  background-image: url('/patterns/Metal.png');
  background-size: 40px;
  border: black groove 7px;
  box-sizing: border-box;
}

.bg {
  height: 1150px;
  background-image: url('/bgs/PanelPattern2.png');
  background-size: 45px;
  background-color: #1b1b1b;
  background-blend-mode: soft-light;
  border: solid #4d4d4d;
  box-sizing: border-box;
}

.link-button {
  border: 20px solid;
  border-image-source: url("/buttons/Button.png");
  border-image-slice: 55 fill;
  border-image-repeat: stretch;
  box-sizing: border-box;
  position: relative;
  color: white;
  height: fit-content;
  width: 230px;
  padding: 0 24px;
  text-align: center;
  margin: 5px 0;
}

.link-button:hover {
  filter: drop-shadow(0 0 8px white);
}

.video-ui {
  opacity: 0;
  transition: opacity 0.5s ;
}

.video-ui:hover {
  opacity: 1;
}

.links-panel {
  width: 65%;
  height: 360px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scaleX(-1);
}

.links-panel-content {
  transform: scaleX(-1);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.panel-text {
  font-size: 42px;
}

.pixel-font {
  font-family: 'VT323';
}

.button-text {
  font-size: 30px;
  margin: 0;
}

.content-area {
  width: 100%;
  height: fit-content;
  margin-top: 20px;
  background-image: url('/bgs/PanelPattern2.png');
  background-size: 45px;background-color: #1b1b1b;
  box-shadow: 10px 10px 10px black;
  border: solid #4d4d4d;
  color: white;
  box-sizing: border-box;
  background-blend-mode: soft-light;
}

.tab-text {
  font-size: 25px;
  color: #8b98a5;
  text-shadow: 1px 1px 1px #464646,-1px -1px 1px white;
  overflow: hidden;
}

.monitor-content {
  width: 76%;
  height: 63%;
  padding: 11% 12% 23% 12%;
}

.whole-grid {
  grid-column: 1 /-1;
  grid-row: 1/-1;
}

.to-strawpage {
  display: none;
}

.marquee-container {
  height: fit-content;
  width: 100%;
  background-color: black;
  color: white;
  box-sizing: border-box;
  border: black groove 5px;
  border-radius: 20px;
}

.left-content {
  width: 100%;
  height: 533px;
  display: flex;
  flex: 5.5;
  flex-direction: column;
  position: relative;
  text-align: left;
}

.right-content {
  flex: 1;
  align-content: center;
}


@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .panel-text {
    font-size: 23px;
  }
  .right-content {
    display: none;
  }
  .links-panel {
    width: 100%;
  }
  .to-strawpage {
    display: inline-block;
  }
  .about-tab {
    position: absolute;
    top: -13px;
    font-size: 0.84em;
    left: -2%;
  }
  .link-tab {
    position: absolute;
    top: -52px;
    right: -5%;
    font-size: 1.25em;
  }
  
  #page-link-container {
    flex-direction: column;
  }
}