body {
    background-color: var(--highlight-color);
    font: 'Quicksand', sans-serif;
}

.ProductName {
    font-size: 100px;
    text-align: center;
    margin-bottom: 0px;
}

.Catchphrase{
    text-align: center;
    color: white;
    margin-top: 0px;
}

.planFlexBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;

    background-color: darkgrey;
    padding: 50px 0px 50px 0px;

    min-height: 90vh;
}

.planDiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: min(500px, 0.3vw);
    width: max(20%, 500px);

    padding-top: 40px;
    padding-bottom: 60px;
    text-align: center;
    margin: 10px;

    border-style: solid;
    border-color: var(--highlight-color);
    border-width: 4px;

    color: var(--main-color);
    background-color: white;
}

.special {
    color: var(--highlight-color);
}

.planName{
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 60px;

    color: var(--highlight-color);
}

.priceMonthly{
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.billingRate{
    padding-top: 0px;
    margin-top: 0px;
    font-size: 18px;
}

.features {
    margin-top: 50px;
    text-align: left;
    line-height: min(40px, 2.5vw);
    font-size: max(min(20px, 1.2vw), 15px);
    margin-bottom: 60px;
    min-height: 350px;
    padding: 0px 30px 0px 30px;
    word-wrap: normal;
    white-space: normal;

    list-style-type: "✓";
}

.features span {
    padding-left: 10px;
}

.takePlanButton {
    all: unset;
    background-color: transparent;
    color: var(--main-color);
    margin-top: 10px;
    text-decoration: none;
    border-style: solid;
    border-color: var(--main-color);
    padding: 10px;
    font-size: 20px;

    cursor: pointer;

    transition: 0.1s;
}

.takePlanButton:hover{
    background-color: var(--highlight-color);
    color: white;
}


#best.planDiv{
    background-color: var(--main-color);
    border-color: var(--main-color);
}

#best {
    color: white;
}

#best .planName{
    color: var(--highlight-color);
}

#best .takePlanButton{
    color: white;
    background-color: var(--highlight-color);
    border-color: white;
}

#best .takePlanButton:hover{
    color: var(--highlight-color);
    background-color: white;
    border-color: var(--highlight-color);
}

#free.planDiv{
    border-color: var(--main-color);
}

#free .planName{
    color: var(--main-color);
}

@media screen and (width < 1200px){
    .planFlexBox{
        flex-direction: column;
    }

    .planDiv {
        width: 80%;
    }

    .features {
        font-size: 25px;
        line-height: 40px;
        margin-left: 20%;
    }
}