.outer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner {
    display: flex;
    flex-wrap: wrap;
    width: 1920px;
    margin-top: 3vh;
    padding-top: 6vh;
    max-height: 94vh;
}

.card {
    margin: 8px;
    border-radius: 4px;
    flex: 1;
    min-width: 520px;
    background-color: #252525;
    height: 128px;
}

.card:hover {
    cursor: pointer;
    transform: scale(1.002);
    transition: 200ms;
}

.card img {
    float: left;
    height: 128px;
    width: 128px;
    margin-right: 8px;
    border-radius: 4px;
}

.card-text {
    margin-left: 8px;

    height: 128px;
    text-overflow: ellipsis;
    overflow: hidden;

}

.card-title {
    color: #f3f3f3;
    font-size: 22pt;
    font-weight: 300;
}

.card-description {
    color: #f3f3f3;
    font-size: 12pt;
    font-weight: 200;
}

h3.card-description {
    margin-right: 8px;
    line-height: 26px;
}


@media only screen and (max-width: 540px) {
    .card {
        margin-top: 8px;
        margin-bottom: 8px;
        margin-left: auto;
        margin-right: auto;
        min-width: 0px;
        flex: auto;
    }

    .card-title {
        font-size: 18pt;
    }

    .card-description {
        font-size: 10pt;
    }

    h3.card-description {
        line-height: 22px;
    }
}