body {
    background-color: #9CD6E2;
}

/********************  Header  *******************/

.main-image {
    background-image: url("/images/endless_clouds.png");
    background-position: -10px -10px;
}

.main-title {
    left: 395px;
    top: 344px;
}

/********************  Main content  *******************/

#content {
    width: 100%;
    height: min-content;
    padding: 0 75px;
    box-sizing: border-box;
}

#pagination {
    color: #E0E6ED;
    background-color: #05D9E866;
}

/********************  Footer  *******************/

#footer {
    color: #FFFFFF;
    background-color: #FBF8E888;
}

/********************  Anime item  *******************/

.anime-item {
    width: 100%;
    height: 418px;
    background-color: #FBF8E8;
    margin: 60px 0;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    gap: 40px;
}

.anime-item .highlighted {
    color: #A2C6DE;
}

.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: #A8C74E;
}

.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: #3E5D35;
    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: #3E5D35;
    text-align: left;
    margin-inline-start: 0;
}


.anime-item p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #308ABE;
}