html, body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      background-color: black;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 100%;
    }

    h1, h2 {
      margin: 10px 0;
    }

    img {
      width: auto;
      height: auto;
      max-height: 100vh;
      object-fit: contain;
    }

    @media (min-height: 500px) {
      .container {
        height: 100vh;
        justify-content: center;
        box-sizing: border-box;
      }

        /* img {
          max-height: 50vh;
        } */
      }