@media (max-width: 100em) {
    .main-container {
        display: grid;
        /* grid-template-columns: minmax(max-content, 1fr) 1fr auto; */
        grid-template-columns: 1fr auto;
        grid-template-rows: repeat(3, auto) 1fr;
        grid-template-areas:
            "header social"
            "play social"
            "game social"
            "gamelog social";
        /* margin-left: 3rem; */
        justify-items: center;
        /* padding: 0 1rem; */
    }

    .header {
        padding-top: 1em;
    }

    .game-container {
        padding-top: 0em;
        width: 35em;
    }

    .oppCard,
    .playerCard {
        font-size: 1.5em;
        padding: 0.75em 0.5em;
    }

    .welcomeMsg p {
        font-size: 1.5em;
    }

    .record {
        font-size: 1em;
    }

    .play {
        margin: 1em 0;
    }

    .gamelog {
        margin-top: 3em;
    }
}