.pricingBox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}

.priceCard
{
    margin-top: 10px;
    margin-left: 10px;
    padding: 1em;
    float:left;
    width: 20em;
    border: 1px solid darkred;
}

.priceCard div
{
    margin-bottom: 1em;
}

.priceContent
{
    height: 5em;
}

.priceSummary
{
    height: 2em;
}

.priceTitle
{
    text-align: center;
    font-size: 2em;
}

.priceAmount
{
    font-size: 2em;
    text-align: center;
}

.priceButton button
{
    width: 100%;
}
.pricingCentered{
    width: 100%;

    text-align: center;
}
.priceRow
{
    display: inline-block;
    width: 100%;
    margin: 2px;
    content: "";
    padding-left: 1em;
    text-align: center;
    vertical-align: top;
}

.priceColumn{
    display: inline-block;
    position: relative;
    width: 30%;
    padding: 2em;
    text-align: left;
    vertical-align: top;
    border-radius: 25px;
    background: #19191c;
    border: 1px solid darkred;
    height: 30em;

}

@media only screen and (max-width: 1100px) {
    /* For mobile phones: */
    .priceColumn {
        width: 100%;
        height: auto;
        padding-bottom: 3em;
    }
}

.priceColumnBottom {
    position: absolute;
    bottom: 1em;
    text-align: center;
    align-content: center;
    width: 90%;
}

.priceButton {
    font: bold 2em Arial;
    text-decoration: none;
    background-color: #19191c;
    color: #fafafa;
    padding: 4px 6px 4px 6px;
    text-decoration: none;
    width: 100%;
}

.pricePageBottom{
    text-align: left;
    margin-left: 3em;
}