.content{
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

.expcard{
    justify-self: center;
    padding: 1.5rem;
}

.expcard{
    background-color: var(--dark-tan);
}

.expcardsection{
    margin-bottom: 2rem;
}

.expcardtitle{
    display: flex;
}

.expcardtitle h2 {
    margin: 0px;
}

/* Phone */
@media screen and (max-width: 619px) {
    .expcardtitle{
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .expcardsection{
        width: 90%;
    }
}

/* Tablet */
@media screen and (min-width: 620px) and (max-width: 1099.9px) {
    .expcardtitle{
        flex-direction: column;
        gap: 0.5rem;
    }

    .expcardsection{
        width: 85%;
    }
}

/* Desktop */
@media screen and (min-width: 1100px) {
    .expcardtitle{
        flex-direction: row;
        column-gap: 2rem;
        row-gap: 0.5rem;
        flex-wrap: wrap;
    }

    .expcardsection{
        width: 70%;
    }
}