.card {
    color: white;
    background: linear-gradient(-45deg, #f403d1, #64b5f6);
    width: 18rem;
    height: 30rem;
    border-radius: 5px;

    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;

    transition: all .25s ease;

    box-shadow: 0 24px 28px rgba(0,0,0,0.25), 0 5px 10px rgba(0,0,0,0.22);
}
.card:hover {
    transform: translateY(-.5rem);
    box-shadow: 0 24px 28px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.52);
}
.card h3 {
    font-weight: 100;
    font-size: 2rem;
}
.card i {
    font-size: 3rem;
    margin: 2rem 0;
}

.card-price {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
    'a a a a b b'
    'c c c d e e'
    ;
    font-weight: 100;
    font-size: 1.9rem;
}
.card-price p:first-child {
    grid-area: a;
    text-align: right;
}
.card-price p:last-child {
    grid-area: e;
    text-align: left;
}
.card-price span {
    grid-area: d;
    display: block;
    width: 200%;
    height: 1px;
    background: white;
    transform: rotateZ(-45deg);
}
.card-bottom p {
    margin: .5rem 0;
    width: 100%;
}
.card-separator {
    background: white;
    height: 1px;
    width: 100%;
    display: block;
}
.card-select-btn {
    color: rgb(80, 80, 80);
    background: white;
    border-radius: 5px;
    padding: .7rem 1.2rem;
    text-transform: uppercase;
    margin: .5rem 0 1rem;
    display: block;
    font-size: .95rem;
}