body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Roboto, Helvetica,
    sans-serif;
  color: #eee !important;
  background-color: #0e0e0e;
}

body::before {
  content: "";
  background: url(bg.jpg) no-repeat 50% / cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s;
  opacity: 0.05;
}

div.fade-to {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 70vh;
  background-image: linear-gradient(#0e0e0e, #0e0e0e00);
}

div.page-container {
  position: relative;
  display: flex;
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  padding-top: 7rem;
}

div.padding {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 70vw;
  margin: 0 auto;
  gap: 3rem;
}

div.game-states {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  min-height: 30px;
  display: grid;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
  grid-template: auto / 25% 25% 25% 25%;
}

div.game-states div {
  position: relative;
  width: 100%;
  display: flex;
}

div.game-states div p {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -10px;
}

img.logo {
  width: 256px;
}
