.price-table{
    width: 900px;
    margin: 200px auto;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.single-price{
    width: 30%;
    background: #262626;
    float: left;
    margin-top: 2%;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: 0.9s;
}   

.price{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #f84e6d;
    margin: 5% auto 0 auto;
}

.deals{
    margin-top: 10%;
}

.single-price{
    font-size: 14px;
    color: #fff;
    line-height: 2;
    border-radius: 10px;
    text-transform: uppercase;
    padding-bottom: 40px;
}

.single-price h2{
    margin-top: 38px;
}

.price-button{
    margin-bottom: 50px;
}

.single-price:hover{
    background: #f84e6d;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0,1);
    transform: scale(1.05);
    z-index: 1;
}

.single-price:hover .price{
    border-color: #fff;
}   

.single-price a{
    text-decoration: none;
    background: #f84e6d;
    color: #fff;
    padding: 10px 60px;
    display: inline-block;
    margin: 10% auto;
    text-transform: uppercase;
}

.single-price:hover a{
    background: #262626;
    color: #fff;
}