*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:      #2a1a2e;
  --accent:  #c9a96e;
  --text:    #f0e6d3;
  --muted:   #9e8a7a;
  --card-bg: rgba(255,255,255,0.07);
  --radius:  14px;
}

body {

  background-color: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(120,60,100,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(80,40,90,0.25) 0%, transparent 50%);
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background: rgba(30,15,35,0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.book-main {
  padding: 110px 6% 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.back-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 30px;
  transition: color 0.2s, border-color 0.2s;
}

.back-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

div{
    flex: auto;
    align-content: center;
    justify-content: center;
    justify-self: center;
    margin: 30px;
    font-size: large;
}