.content {
    position: relative;
    grid-area: content;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    /* align-items: center; */
    gap: 4em;
    background-color: inherit;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
}

a.card-link {
    text-decoration: none;
    color: inherit;
}

div.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 0.5rem; */

    width: 16rem;
    height: 8rem;
    padding: 0.75rem 1rem;

    background-color: #EEEEEE;
    text-align: left;
    border-radius: 16px;
}

div.card:hover {
    background-color: #CCCCCC;
}

.card .card-title {
    font-size: 16pt;
    font-weight: bold;
    margin: 0;
}

.card .card-details p {
    font-size: 10pt;
    color: hsl(0, 0%, 50%);
    margin: 0;
}


.card p.platform {
    font-size: 14pt;
    font-weight: bold;
    margin: 0;
}

.espn {
    color: #e52534;
}

.sleeper {
    color: #1565C0;
}