.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    text-align: center;
    gap: 0.5rem;
}

.wrapper .card {
    display: grid;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    grid-column: span 1;
    justify-items: center;
    text-decoration: none;
}

.wrapper .card > *, .wrapper .card h3  {
    margin: 0;
}

.wrapper .card a {
    text-decoration: none;
}

.wrapper .card footer a.btn {
    color: unset;
    background-color: unset;
    border-radius: unset;
    padding: unset;
    cursor: pointer;
    border: none;
    font-weight: bolder;
}

h2 {
    text-align: center;
}

/* Uncomment this section once I switch to bulleted list About Me section */
/* #about-me ul {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: left;

    @media screen and (min-width: 800px) {
        grid-template-columns: repeat(2, 1fr);
    }
} */