#mainContent {
    background-color: #eaebef;
    user-select: none;
}

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

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

#seriesCatalog {
    padding-top: 3vw;
    padding-bottom: 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: 1.5vw;
    border: 1px solid rgba(0, 0, 0, 0.527);
    border-radius: 2vw;
    align-items: center;

    background-color: #fafafa;
    box-shadow: 0.2vw 0.3vw 0.4vw #47474783;

    transition: scale 0.5s;
}

.series:hover {
    background-color: #f2f3f9;
    scale: 105%;
}

.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;
    font-family: var(--font7);
    width: 80%;
}

.seriesDesc {
    font-style: italic;
}

.series img {
    margin: 1vw;
    border-radius: 0.5vw;
    object-fit: cover;
    background-color: #cacaca7c;

    width: 10vw;
    height: 10vw;
}