body, html {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: sans-serif;
  /* Allow scroll from the start */
}

#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  z-index: 9999;
  pointer-events: all;
}

#webtoon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.webtoon-part {
  width: 100%;
  max-width: 1125px;
  height: auto;
  display: block;
}
