html, body
{
  height: 100%;
}

body
{
  display: flex;
  flex-direction: column;
}

footer
{
  margin-top: auto;
}

.logo
{
  height: 140px;	
}

.item-card
{
  background: #1c1c1c;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}

.item-card img
{
  max-width: 100%;
  height: 120px;
  object-fit: contain;
}

.item-card.playstyles
{
  border: 2px solid #ffc107;
  background: #2a2a2a;
}

.bg
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image: url("../images/TXC_Listing_4K_NoLogo_01.jpg");
  background-size: cover;
  background-position: center;
}

.bg::after
{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.overlay
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background-image: url("../images/overlay.png");
  background-size: cover;
  background-position: center;

  /* opacity: 0.5; */
  pointer-events: none;
}
