body {
    background-color: #0B0E14;
    _background-color: #d6ec67;
}

/********************  Header  *******************/

.main-image {
    background-image: url("/images/night_town_main.png");
    background-position: -10px -10px;
}

.main-title {
    left: 395px;
    top: 144px;
}

/********************  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: #2C3E50;
}

/********************  Anime item  *******************/

.anime-item {
    width: 100%;
    height: 418px;
    background-color: #2C3E50;
    margin: 60px 0;
    display: flex;
    flex-direction: row;
    padding: 10px;
    justify-content: space-between;
    gap: 40px;
}

.anime-item .highlighted {
    color: #FBABF9;
}

.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: #E0E6ED;
}

.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: #89F1F5;
    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: #89F1F5;
    text-align: left;
    margin-inline-start: 0;
}


.anime-item p {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #E0E6ED;
}