:root {
  --background-color: #1d2d44;
  --image-max-height: 1200px;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  overflow: hidden;
}

#fantacone-img {
  display: block;
  width: auto;
  height: 100dvh;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 769px) {
  #fantacone-img {
    max-height: var(--image-max-height);
  }
}
