.section-title {
    font-family: "Open Sans", sans-serif;
    font-size: 48px;
    font-weight: 500;
    font-style: italic;
    color: rgb(62, 77, 80);
    text-align: center;

    border-bottom-style: solid;
    border-bottom-width: 0.8px;
    border-bottom-color: rgb(207, 207, 207);
    margin-bottom: 2vh;
}

.section-text {
    font-family: "Open Sans", sans-serif;
    font-size: calc(14px + 1vh*0.2);
    font-weight: 300;
    color: black;
}

.section-container {
    margin: auto;
    width: 80%;
}

.product-container {
    display: grid;
    grid-template-columns: auto auto auto;
    color: black;
    text-align: center;
}

.product-container img {
    width: 20vw;
}

@media only screen and (max-width: 600px) {
    .section-container {
        width: 95%;
    }
  }