@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", serif;

}
body{
    background: #5c539d;
}
.container{
    width: 100%;
    height: 100vh;

}
.container h2 {
    color: #fff;
    font-size: 25px;
    padding: 20px 0;
    text-align: center;

}
.price-row{
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-gap: 25px;
}
.price-col{
    background: #1f283b;
    padding: 7% 15%;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}
.price-col:hover{
    background: #242f46;
    transform: scale(99%);
}

.price-col p {
    font-size: 20px;
    color: #31a2e8;
}
.price-col h3 {
    font-size: 40px;
    margin: 20px 0 40px;
    font-weight: 500;
}
.price-col h3 span{
    font-size:15px;
}
.price-col ul{
    text-align: left;
    margin: 22px 0;
    color: #ddd;
    list-style: none;
    
}
.price-col ul li{
    margin: 15px 0 ;
    font-size: 15px;
}
.price-col ul li::before{
    content: '\2022';
    color: #309ee3;
    font-weight: bold;
    margin-right: 8px;
}
.price-col button{
    width:  100%;
    padding :14px 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
    border:1px solid #309ee3;
    border-radius: 6px;
    margin-top: 50px;
    margin-bottom:20px ;
    cursor: pointer;
    transition: 0.5s;
}
.price-col button:hover{

    background-color:#309ee3;
}