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

header {
  background: url('images/cover.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

header .content {
  position: relative;
  text-align: center;
  z-index: 1;
}

h1 {
  font-size: 3em;
  color: #00ffff;
  margin-bottom: 0.5em;
}

a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

nav {
  background: #1a1a1a;
  padding: 10px;
  text-align: center;
}

nav a {
  margin: 0 10px;
}

main {
  padding: 2em;
}

body {
    background: #111;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 30px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.comic-page {
    max-width: 100%;
    width: 900px;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    display: block;
}

a.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #ff2c2c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

a.back-btn:hover {
    background: #ff5555;
}
