
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,500&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
body{
    background-color: rgb(30, 32, 34);
    color : white;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.pricing_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0 0 0;
}
.pricing_card .plan{
    background-color: red;
    outline: none;
    width: 250px;
    height: 60px;
    border-radius: 2px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pricing_card .choose{
    margin: 1.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.container{
    display: flex;
    flex-direction: row;
    /* background-color: whitesmoke; */
    justify-content: center;
    align-items: center;
}
.container .card{
    width: 300px;
    height: 400px;
    padding: 40px;
    background-color: rgb(49, 50, 52);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 20px;
    transition: 300ms all;  
}
.container .card:hover{
    border-top: 2px solid red;
    transform: scale(1.03);
}
.container .card .header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.container .card .header h4{
    margin-top: 10px;
}

.container .card .contant_data{
    text-transform: capitalize;
    font-size: 13px;
    line-height: 1.2rem;
} 

button{
    padding: 10px;
    font-size: 15px;
    background-color: transparent;
    border: 1px solid red;
    color: whitesmoke;
    cursor: pointer;
    border-radius: 5px;
}
button:hover{
    border: 2px green solid;
    transition: 200ms ;

}

@media screen and (max-width:802px) {
    .container{
        display: flex;
        flex-direction: column;
    }
}

@media screen and (min-width:802px) {
    .container{
        display: flex;
        flex-direction: row;
        width: 100%;
    }

}