html, body {
    height: 100%
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    font-family: "Satisfy", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.2;
}
.main-body {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 20px 20px 20px;
    gap: 20px;
    font-size: large;
    font-weight: lighter;
}

.image {
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    flex-direction: row;
}

.header, nav {
    display: flex;
    justify-content: start;
}

.header {
    border-bottom: 1px solid black;
}

.btn {
    border-radius: 8px;
    padding: 5px 10px;
    margin: 8px 20px;
    border: 1px solid black;
    background: #f8f9fa;
    color: black;
    text-decoration: none;
}
.btn:hover {
    background: #e9ecef;
}

.text {
    margin-top: 0px;
    max-width: 1000px;
}

.lists li {
    margin-bottom: 12px;
    line-height: 1.5;
}
/* .footer {
    font-size: xx-small;
    border-top: 1px solid black;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
} */

#novel-image {
    max-height: 525px;
}