body
{
  background-image: radial-gradient(circle, rgba(15,10,13,0.8) 0%, rgba(15,10,13,1) 100%), url('../assets/games/screenshot0.png');
  background-size: cover;
}
.hero
{
  padding-top: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(15,10,13,1) 0%,
    rgba(15,10,13,1) 35%,
    rgba(15,10,13,0) 100%
  );
  width: 100vw;
  height: auto;
}
.transmit-logo
{
  width: auto;
  height: 20vh;
  background-color: transparent;
}
.subtitle
{
  width: 70%;
  text-align: center;
  font-family: "LBBold"; 
  font-size: 22px;
}
.content
{
  padding-top: 5vh;
  width: 100%;
  background-color: transparent;
}
.specs
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2vw;
  width: 100%;
  margin: 0 auto;
  padding: 0 3vw;
  box-sizing: border-box;
}
.description
{
  flex: 0 0 auto;
  font-size: 1.25vw;
  margin: 0;
  max-width: 28vw;
  justify-content: flex-start;
}
.factsheet
{
  display: flex;
  flex-direction: column;
  margin-left: 2.5vw;
  font-size: 1.25vw;
  max-width: 28vw;
  margin-top: 2vh;
}
.factsheet button
{
  text-align: center;
  margin-top: 2vh;
  font-size: 1.25vw;
}
.factsheet button:hover img
{
  filter: invert(100%);
}
.wishlist
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  cursor: pointer;
}
.trailer-video
{
  flex: 1 1 auto;
  align-self: center;
  min-width: 0;
  width: auto;
  max-width: none;
  aspect-ratio: 16 / 9;
  border: none;
}
.trailer{
  margin-top: 12vh;
  margin-bottom: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.trailer > div
{
  width: 70%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-height: 768px)
{
  .trailer > div
  {
    width: 70%;
  }
}
.footer{
  background: linear-gradient(
      to bottom,
      rgba(15,10,13,1) 100%%,
      rgba(15,10,13,1) 35%,
      rgba(15,10,13,0) 0%
    );
  height: 30vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.footer-logo
{
  max-width: 15vw;
}
.links
{
  display: flex;
  flex-direction: row;
  max-width: 30vh;
  min-width: 30vh;
  width: 100%;
  margin: 1vh;
}
@media (max-width: 850px)
{
  .hero
  {
    padding-top: 8vh;
    padding-bottom: 2vh;
  }
  .hero img
  {
    max-width: 50vh;
    width: 90%;
    height: auto;
    max-height: auto;
  }
  .subtitle
  {
    width: 90%;
    font-size: 1.2em;
  }
  .content
  {
    padding-top: 0;
  }
  .specs
  {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .description
  {
    width: 95%;
    max-width: 90vw;
    font-size: 1.2em;
  }
  .trailer-video
  {
    flex: 0 0 auto;
    width: 100%;
    max-width: 95vw;
    align-self: center;
    margin-top: 5vh;
    margin-bottom: 0;
  }
  .factsheet
  {
    align-items: flex-start;
    font-size: 1.2rem;
    width:95%;
    max-width: 90vw;
  }
  .factsheet button
  {
    font-size: 1.4rem;
    text-align: left;
  }
  .trailer
  {
    margin-top: 5vh;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
  }
  .trailer > div
  {
    width: 90%;
  }
  .footer-logo
  {
    max-width: 50vw;
  }
}
