    body {
      margin: 0;
      background-color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh; /* Ocupa toda a altura da tela */
    }

    img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; /* mantém proporção sem cortar */
    }