h1 {
    margin-bottom: 30px;
}
.subtitle {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 40px;
    display: block;
}

.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-form-button {
    margin-top: 30px;
}

@media only screen and (max-width: 950px) {
    .subtitle {
        text-align: center;
    }
    .product-form-button {
        justify-self: center;
    }
}