
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0c0c;
  color: #e0e0e0;
}

h1 {
  text-align: center;
  padding: 20px;
  color: #ff3c3c;
}

ul.manga-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

ul.manga-list li {
  margin: 10px 0;
}

ul.manga-list a {
  color: #ff6b6b;
  font-size: 20px;
  text-decoration: none;
}

ul.manga-list a:hover {
  text-decoration: underline;
}

.reader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reader img {
  max-width: 100%;
  margin-bottom: 10px;
}

body.disclaimer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
  color: white;
}

.center-box {
  text-align: center;
  border: 2px solid red;
  padding: 40px;
  border-radius: 20px;
  background-color: #1a1a1a;
}

.enter-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 20px;
  background-color: red;
  color: white;
  text-decoration: none;
  border-radius: 10px;
}

.enter-button:hover {
  background-color: darkred;
}
