#mainHeader {
  flex-direction: column;
}
#mainHeader span {
  font-style: normal;
  font-weight: 300;
  font-size: 1.4em;
  line-height: 100%;
  margin-top: 5px;
}

/* YT iframes Spotlight */
.yt-container-divs {
  display: none;
}
.yt-divs {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.yt-iframe-containers {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.yt-iframes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Article */
.history-article {
  flex-direction: column;
}
.history-article h2 {
  margin: 10px 0px 0px 0px;
}
.history-article header {
  margin-bottom: 40px;
}
.history-article p {
  margin: 10px 0px;
}

.history-images {
  background: rgba(31, 31, 31, 0.3);
  border-radius: 10px;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.15),
    inset 0px 2px 1px rgba(255, 255, 255, 0.3),
    inset 0px -2px 1px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  max-width: 235px;
  padding: 10px;
}
.history-images-right {
  margin: 5px 0px 0px 10px;
}
.history-images-left {
  margin: 5px 10px 0px 0px;
}
.history-images a {
  transition-duration: 0.2s;
}
.history-images a:hover {
  transition-duration: 0.2s;
  filter: brightness(80%);
  transform: scale(1.03);
}
.history-images img {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  margin-right: 10px;
}

.video-carousel-container {
  flex-direction: column;
  position: relative;
}

.carousel-and-buttons-container {
  width: 100%;
  position: relative;
}
.carousel-and-buttons-container button {
  border-radius: 9px;
  width: 50px;
  height: 48px;
  position: absolute;
  z-index: 1;
  transition-duration: 0.3;
}

.video-nav-buttons img {
  width: 45%;
  margin-bottom: -3px;
  z-index: 2;
  position: relative;
}

.carousel-and-buttons-container .video-nav-buttons:first-child {
  left: 0;
}
.carousel-and-buttons-container .video-nav-buttons:last-child {
  right: 0;
}
.video-carousel-wrapper {
  overflow: hidden;
  flex-grow: 1;
  width: 100%;
  position: relative;
}

.video-carousel {
  display: flex;
  margin: 0px 10px;
  overflow: hidden;
  flex-wrap: nowrap;
  width: max-content;
  transition: none;
}
.video-carousel a {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.8em;
}
.video-carousel img {
  border-radius: 7px;
  margin: 0px 5px;
  max-width: 256px;
  flex-shrink: 0;
  transition-duration: 0.2s;
}
.video-carousel img:hover {
  filter: brightness(80%);
  scale: 0.98;
  transition-duration: 0.2s;
}

.slider-div {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(99, 101, 102, 0.007) 51.5%,
    rgba(192, 196, 199, 0.49) 100%
  );
  box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  flex-direction: row;
  height: 10px;
  width: 100%;
  margin-top: 20px;
}

/* Style the range slider background */
.slider-div input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(99, 101, 102, 0.007) 51.5%,
    rgba(192, 196, 199, 0.49) 100%
  );
  box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  outline: none;
  margin: 0;
  padding: 0;
}

/* Style the track (background of the slider) */
.slider-div input::-webkit-slider-runnable-track {
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(99, 101, 102, 0.007) 51.5%,
    rgba(192, 196, 199, 0.49) 100%
  );
  border-radius: 4px;
}
.slider-div input::-moz-range-track {
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(99, 101, 102, 0.007) 51.5%,
    rgba(192, 196, 199, 0.49) 100%
  );
  border-radius: 4px;
}
.slider-div input::-ms-track {
  height: 10px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(99, 101, 102, 0.007) 51.5%,
    rgba(192, 196, 199, 0.49) 100%
  );
  border-radius: 4px;
  border-color: transparent;
  border-width: 0;
  color: transparent;
  background-color: transparent;
  box-shadow: none;
}

/* Style the thumb (the movable part of the slider) */
.slider-div input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 10px;
  background: linear-gradient(180deg, #c7e0d6 0%, #4aa871 48.44%, #20edb3 100%);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.slider-div input::-moz-range-thumb {
  width: 100px;
  height: 10px;
  background: linear-gradient(180deg, #c7e0d6 0%, #4aa871 48.44%, #20edb3 100%);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
}
.slider-div input::-ms-thumb {
  width: 100px;
  height: 10px;
  background: linear-gradient(180deg, #c7e0d6 0%, #4aa871 48.44%, #20edb3 100%);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  cursor: pointer;
}
/* Style when the slider is hovered */
.slider-div input:hover::-webkit-slider-thumb {
  background: linear-gradient(180deg, #a9c8b7 0%, #429f65 48.44%, #1ac68d 100%);
}
.slider-div input:hover::-moz-range-thumb {
  background: linear-gradient(180deg, #a9c8b7 0%, #429f65 48.44%, #1ac68d 100%);
}
.slider-div input:hover::-ms-thumb {
  background: linear-gradient(180deg, #a9c8b7 0%, #429f65 48.44%, #1ac68d 100%);
}
.video-carousel-wrapper::-webkit-scrollbar {
  height: 10px;
}
.video-carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}
.video-carousel-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

#graphics {
  text-align: center;
}

/* 88x31 Buttons */
.community-buttons {
  width: 88px !important;
  margin-top: 5px;
  transition-duration: 0.2s;
}
.community-buttons:hover {
  filter: brightness(85%);
  transition-duration: 0.2s;
}

/* Individual navs (or link row) */
.links-container {
  padding: 4px 5px;
}
.links-container a {
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3),
    inset 0px 2px 1px rgba(255, 255, 255, 0.3),
    inset 0px -2px 1px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  justify-content: flex-start;
  padding: 0px 10px;
  margin: 5px 4px;
  width: 100%;
  min-height: 80px;
  font-family: "Noto Sans Regular", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  z-index: 1;
}
.links-container img {
  height: 60px;
}

.links-separators {
  height: 80px;
  padding: 1px;
  z-index: 2;
}

.stamps-div a {
  text-decoration: none;
  margin: 0px 1px;
}

/* Webring */
#aero-ring {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(64, 64, 64, 0.3) 100%
  );
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5),
    inset 0 2px 1px rgba(255, 255, 255, 0.15),
    inset 0 -2px 1px rgba(0, 0, 0, 0.35);
  padding: 0.75rem;
  width: 15rem;
  margin: 15px auto 0px auto;
  font-family: sans-serif;
}

/* Responsiveness */
@media (max-width: 250px) {
  .links-container a {
    flex-direction: column;
    padding: 10px;
  }
}

@media (max-width: 410px) {
  h1 {
    font-size: 1.4em;
  }
  h2 {
    font-size: 1.3em;
  }
  .video-nav-buttons {
    display: none;
  }
}

@media (max-width: 600px) {
  .history-images {
    display: none;
  }
}

@media (max-width: 750px) {
  .links-container {
    flex-direction: column;
    height: 100%;
  }
  .links-container a {
    padding: 5px;
  }
  .links-separators {
    display: none;
  }
}
