@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    margin: 0;
    background-color: #180c03;
    color: white;
    font-family:'Source Sans 3', sans-serif;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #intro {
    text-align: center;
  }
  
  #container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  #viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  #viewer button {
    font-size: 2rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  #manga-page {
    max-width: 100vw;
    max-height: 91vh;
    cursor: pointer;
  }
  
  .judul {
    color: #ff8624;
  }

  a {
    text-decoration: none;
    color: #ffffff;
  }
  
  a:hover {
    color: #ff8624;
    text-decoration: underline;
  }