h1 {
    text-align: center;
    font-size: 1.75rem;
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 0;
}

.col {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap; 
    width: 100%;
    gap: 2em;
    margin-top: 2em;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    min-width: 50px;
    max-width: 300px;
    padding: 2em;
    background-color: rgb(215, 215, 215);
}

.product-card img {
    width: 100%;
    line-height: 0;
    margin: 0 auto;
}

.product-text {
    letter-spacing: 2px;
    font-size: 1.25rem;
    text-align: center;
}

/* .main-text {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: .5em;
} */

 
/*-----HANDLE LARGER SCREEN SIZE-------------------------------------*/
@media screen and (orientation: landscape) {
    .product-card {
        width: 40%;
    }
  }
