    body {
      margin: 0;
      font-family:'calibri';
      background: #000000;
      color: yellowgreen;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    .comic-container {
      max-width: 90%;
      max-height: 80%;
      justify-content: center;
      align-items: center;
    }

    .comic-container img {
      width: 99%;
      max-height: 100%;
      object-fit: contain;
    }

    .controls {
      margin-top: 1rem;
      display: flex;
      gap: 1rem;
    }

    button {
      padding: 0.5rem 1rem;
      border: 1px yellowgreen solid;
      width: 150px;
      font-weight: bold;
      cursor: pointer;
      background: #000000;
      color: yellowgreen;
    }

    .exit  {
      margin: 5px;
    }
    
    a {
            color:inherit;
      font-family:inherit;
    }