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

.projcard{
    justify-self: center;
    background-color: var(--dark-tan);
    width: 100%;
    height: calc(100% - 3rem);
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.projcardcontent{
    width: 85%;
}

.projcardcollection {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 70vw;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.projcardimg{
    height: 12vw;
    width: 100%;
    margin-block: 1rem;
    object-fit: cover;
}

.projcardtitle{
    display: flex;
    flex-direction: row;
}

.projcardtitle h2 {
    margin: 0px;
}

/* Phone */
@media screen and (max-width: 619px) {
    .projcardsection{
        width: 60vw;
        height: auto;
    }

    .projcardimg{
        height: 25vh;
    }
}

/* Tablet */
@media screen and (min-width: 620px) and (max-width: 1099.9px) {
    .projcardsection{
        width: 40vw;
        min-width: 25rem;
        height: auto;
    }

    .projcardimg{
        height: 25vh;
    }

    .projcardcollection {
        width: 90vw;
    }
}

/* Desktop */
@media screen and (min-width: 1100px) {
    .projcardsection{
        width: 29vw;
        height: auto;
    }
}