* {
    padding: 0%;
    margin: 0%;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*::-webkit-scrollbar {
    display: none;
}
.pricing{
    padding: 100px;
}
.pricing h1{
    text-align: center;
    margin-left: 100px;
    margin-bottom: 50px;
}

.priceContainer{
    display: flex;
    justify-content: space-around;
}

.priceCard {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    background-color: #007bff;
    padding: 1.5rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.price {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    color: white;
}

.price span{
    font-size: 0.875rem;
}

.lists {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    grid-row-gap: 0.75rem;
    row-gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: white;
}

.list {
    display: flex;
    align-items: center;
}

.list .icon {
    height: 1.2rem;
    width: 1.2rem;
    font-size: 0.9rem;
    margin: 0%;
}

.list span {
    margin-left: 1rem;
}

.action {
    margin-top: 2rem;
    border: 2px solid #ffffff;
    border-radius: 9999px;
    background-color: #ffffff;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.875rem;
    color: #007bff;
    outline: none;
    text-decoration: none;
    transition: all .2s ease;
}

.action:hover {
    color: white;
    background-color: transparent;
}

@media screen and (max-width:480px){
    .priceContainer{
        display: block;
    }
    .pricing{
        padding: 0%;
    }
    .pricing h1{
        margin: 0%;
        margin-bottom: 20px;    
        text-align: center;
    }
    .priceCard{
        margin: auto;
        margin-bottom: 30px;
    }
}