body {
    background-color: #E7BCB5;

}

/********************  Header  *******************/

.main-image {
    background-image: url("/images/sweet_romance.png");
        background-position: -10px -10px;

}

.main-title {
    left: 450px;
    top: 270px;
    color: white;
}

/********************  Main content  *******************/

#content {
    width: 100%;
    height: min-content;
    padding: 0 75px;
    box-sizing: border-box;;
}

#pagination {
    color: #E0E6ED;
    background-color: #F7F7EF;
}

/********************  Footer  *******************/

#footer {
    color: #FFFFFF;
    background-color: #CF6359;
}

/********************  Anime item  *******************/

.anime-item {
    width: 100%;
    height: 418px;
    background-color: #F7F7EF;
    margin: 60px 0;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    gap: 40px;
}

.anime-item .highlighted {
    color: #E1ADAF;
}

.anime-item-image {
    min-width: 275px;
}

.anime-item-image img {
    width: 100%;
}

.anime-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}

.anime-item h2 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
    color: #97474A;
}

.anime-item dl {
    display: grid;
    grid-template-columns: min-content min-content;
    gap: 10px;
}

.anime-item dl dt {
    width: min-content;
    max-width: min-content;
    font-size: 20px;
    font-weight: bold;
    color: #E1ADAF;
    text-align: left;
}

.anime-item dl dt:not(:empty)::after {
    content: ":";
}

.anime-item dl dd {
    min-width: min-content;
    font-size: 20px;
    font-weight: bold;
    color: #E1ADAF;
    text-align: left;
    margin-inline-start: 0;
}


.anime-item p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #E3807B;
}