@import url("https://fonts.googleapis.com/css?family=Sintony");

body {
  background: #1a1a1a;
  font-family: "Sintony", sans-serif;
  color: #ff7100;
}

.mainBody {
  position: absolute;
  width: 100%;
  height: 100%;
}

.mainBody.screenshots {
  position: unset;
  height: unset;
}

.background-video {
  position: fixed;
  z-index: -99;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-aspect-ratio: 16/9) {
  .background-video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .background-video {
    width: 300%;
    left: -100%;
  }
}

.background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  padding: 0;
  margin: 0;
  z-index: 2;
}

.under_construction_banner {
  background-color: rgba(193, 71, 0, 0.41);
  width: 100%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 2px solid rgba(238, 73, 0, 0.41);
  border-bottom: 2px solid rgba(238, 73, 0, 0.41);
}

.screenshotHolder {
  display: grid;
  grid-template-columns: 33.3% 33.3% 33.3%;
  grid-row-gap: 10px;
  justify-items: center;
}

.screenshot-image {
  object-fit: scale-down;
  max-width: 100%;
  max-height: 150px;
}

a {
  color: #ff7100;
}

a:hover {
  color: #e26603;
}

.pager-button {
  display: inline-block;
  color: #fa7c14;
  border: 1px solid #ff7100;
  border-radius: 5px;
  padding: 10px;
  min-width: 100px;
  text-decoration: none;
  background-color: rgba(193, 71, 0, 0.71);
  font-weight: bold;
}

.pager-button.currentPage {
  color: #6e3200;
  background-color: #ff7300bd;
}
