#contentTitle {
    font-family: var(--fontFancy);
    font-size: 6vw;
    text-align: center;

    padding-top: 2vw;
    padding-bottom: 2vw;
}

#seriesCatalog {
    padding-top: 3vw;
    width: 75vw;

    display: grid;
    justify-items: center;
    margin: auto;
}

.series {
    width: inherit;
    height: 15vw;

    display: flex;
    justify-content: space-evenly;

    padding: 0.5vw;
    margin: 0.5vw;
    border: 1px solid rgba(0, 0, 0, 0.527);
    border-radius: 2vw;
    align-items: center;
}

.series:hover {
    background-color: rgba(240, 240, 240, 0.584);
}

.seriesInfo {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.seriesTitle {
    font-size: 3.5vw;
    font-weight: bold;
    text-align: center;
}

.seriesDesc {
    font-style: italic;
}

.series img {
    margin: 1vw;
    border-radius: 0.1vw;
    object-fit: cover;

    width: 10vw;
    height: 10vw;
}