.main-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.main-description {
    flex-basis: 460px;
    flex-grow: 1;
}
.main-description > p:not(:last-child) {
    margin-bottom: 10px;
}
.main-flex > img {
    width: 500px;
    border-radius: 4px;
    transition: 500ms ease-in-out;
}
.main-flex > img:hover {
    transform: scale(102%);
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    align-items: flex-start;
    max-width: 100%;
}
.product-list li {
    max-width: 100%;
}

.product {
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    border-radius: 20px;
    padding: 20px;
    transition: 200ms ease-in-out;
    border: 2px solid transparent;
    width: 580px;
    max-width: 100%;
}
.product:hover {
    background-color: #FAFAFA;
    border-color: grey;
}

.product > h3 {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    font-weight: 800;
    justify-self: center;
    margin-bottom: 10px;

}

.product-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.product-flex > img {
    width: 180px;
    height: 180px;
    transition: 500ms ease-in-out;
}
.product-flex:hover > img {
    transform: scale(104%);
}


.product-flex tr {
    display: flex;
    margin: 10px 0px;
    width: 100%;
    align-items: center;
}

.product-flex th {
    font-weight: 500;
    text-align: left;
    width: 220px;
    min-width: 220px;
    line-height: calc(1.6rem * 1.5);
}
.product-flex td {
    text-align: left;
    line-height: calc(1.6rem * 1.5);
}

.product-form-button {
    justify-self: center;
}


.subsection-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.subsection {
    flex-basis: 340px;
    flex-grow: 1;
    box-shadow: 0 0 2px rgb(0 0 0 / 0.5);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: 200ms ease-in-out;
}
.subsection:hover {
    background-color: #FAFAFA;
    border-color: grey;
}


.subsection > h2 {
    font-size: 3rem;
    line-height: calc(3rem * 1.5);
    margin-bottom: 0;
}


@media only screen and (max-width: 950px) {
    .download-button {
        justify-self: center;
    }


    .product > h3 {
        font-size: 2.4rem;
        line-height: calc(2.4rem * 1.5);
    }
    .product-flex :is(th, td) {
        font-size: 1.4rem;
        line-height: calc(1.4rem * 1.5);
    }
    .product-flex th {
        width: 190px;
        min-width: 190px;
    }
    .subsection > h2 {
        font-size: 2.4rem;
        line-height: calc(2.4rem * 1.5);
    }
}