/* ===========================
   Global
=========================== */

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

body{

font-family:Georgia, serif;

background:#0f1115;

color:#e8edf3;

line-height:1.8;

}

/* ===========================
   Header
=========================== */

header{

max-width:900px;

margin:0 auto;

padding:60px 20px 30px;

border-bottom:1px solid #1b222d;

}

.back-link{

display:inline-block;

margin-bottom:25px;

color:#ffb703;

text-decoration:none;

font-weight:bold;

transition:.25s;

}

.back-link:hover{

opacity:.8;

}

header h1{

font-size:2.4rem;

margin-bottom:15px;

color:white;

}

.subtitle{

max-width:700px;

color:#9ba7b6;

font-size:1.05rem;

}

/* ===========================
   Main
=========================== */

main{

max-width:900px;

margin:60px auto;

padding:0 20px;

}

.intro{

margin-bottom:60px;

}

.intro p{

margin-bottom:20px;

font-size:1.05rem;

}

/* ===========================
   Novel
=========================== */

.novel-list h2{

font-size:2rem;

margin-bottom:35px;

color:#ffffff;

}

/* ===========================
   Chapter Cards
=========================== */

.chapter-card{

background:#161a22;

padding:30px;

border-radius:10px;

margin-bottom:25px;

border:1px solid #222a35;

transition:.25s;

}

.chapter-card:hover{

transform:translateY(-3px);

border-color:#ffb703;

}

.chapter-card h3{

color:white;

margin-bottom:10px;

font-size:1.35rem;

}

.chapter-card p{

color:#9ba7b6;

margin-bottom:20px;

}

/* ===========================
   Button
=========================== */

.btn{

display:inline-block;

padding:12px 28px;

background:#ffb703;

color:#111;

font-weight:bold;

text-decoration:none;

border-radius:6px;

transition:.25s;

}

.btn:hover{

background:#ffc933;

}

/* ===========================
   Footer
=========================== */

footer{

margin-top:80px;

padding:30px 20px;

text-align:center;

border-top:1px solid #1b222d;

color:#8d98a6;

font-size:.95rem;

}