* {
    box-sizing: border-box;
    width: 0 auto;
}

/* Create three columns of equal width */
.columns {
    float: right;
    width: 20%;
    left: -20%;
    position: relative;
}

/* Style the list */
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* Add shadows on hover */
.price:hover {
   // box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .header {
    background-color: white;
    color: #1e1e1e;
    font-size: 30px;
    padding: 50px 0;
}

/* List items */
.price li {
    padding: 20px;
    text-align: center;
}

/* Grey list item */
.price .greyprice {
    background-color: #f7f7f7;
    color: #1e1e1e;
    padding: 30px 0 30px 0;
    text-align: center;
    font-weight: 600;
    font-size: 26px;

}
.price .free {
    background-color: #f7f7f7;
    color: #1e1e1e;
    padding: 100px 0 30px 0;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
}
.price .greypriceh {
    background-color: #f7f7f7;
    color: #1e1e1e;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
            text-decoration: line-through;
}
.price .grey {
    background-color: #f7f7f7;
}
/* The "Sign Up" button */
.price .button {
    background-color: #ff2019;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}
.price .button:hover {
    background-color: #ff2019;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}
.price .button a:hover {color:white;}

/* Change the width of the three columns to 100% 
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
    .columns {
        width: 100%;
    }
}