@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    background: white;
    color: rgb(202, 76, 62);
}

h2 {
    text-align: center;
    color: dimgrey;
}

.col {
    float: left;
    width: 33.3%;
    padding: 10px;
    box-sizing: border-box;
}

.price-box {
    background: white;
    color: #555;
    list-style-type: none;
    border: 1px solid rgb(236, 107, 107);
    margin: 0;
    padding: 0;
    transition: 0.3s;
}

.price-box:hover,
.price-box.best {
    box-shadow: 0 10px 15px 0 rgb(218, 98, 98);
}

.price-box .header {
    background-color: rgb(33,102,230);
    color: #fff;
    font-size: 25px;
}

.price-box .header.header-red {
    background-color: rgb(14, 177, 20);
}

.price-box li{
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.price-box .emph {
    background-color: #f4f4f4;
    font-size: 20px;
}

.button {
    background-color: rgb(0, 188, 255);
    border: none;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

@media(max-width:700px) {
    .col {
        width: 100%;
    }
}
