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

body {
    background-color: #130017;
    width: 100vw;
}

img {
    width: 500px;
    max-width: 100vw;
}

.comic {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
}

a {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 550px) {
	.comic-back-anchor {
        color: black;
    }
}

a:hover {
    text-decoration: underline;
}

.back-btn a {
    opacity: .5;
}


.back-btn a:hover {  
    opacity: 1;
}

.main-list {
    margin-top: 5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.chapters li {
    background-color: purple;
    padding: 1rem 3rem;
    border-radius: 20px;
}

.chapters li:hover {
    background-color: #733B73;
}

.images {
    background-color: white;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: #181716;
    padding: 1rem;
    border-radius: 20px;
}

.description {
    text-align: center;
}