body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #fff;
}


.page-heading {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.novel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
}

.novel-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.novel-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.novel-cover {
    width: 200px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 0 0 10px;
}

.novel-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.novel-header {
    display: flex;
    align-items: center;
}

.small-cover {
    width: 80px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    margin-right: 15px;
}

.novel-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.novel-author {
    font-size: 18px;
    margin: 5px 0;
    color: #555;
}

.novel-description {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.download-btn {
    display: inline-block;
    font-size: 16px;
    padding: 10px 20px;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



