@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    font-size: 12px;
}
body {
    font-family: 'Nunito Sans', sans-serif;
    height: 100vh;
}
.cardWrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap;
    gap: 2rem;
}
.pricingCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 2rem;
    min-width: 25rem;
}
.planName {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.planPriceDescription {
    font-size: 0.9rem;
    color: #73829e;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.priceDiv {
    background-color: #f4f6fc;
    border-radius: 2rem;
    font-size: 3rem;
    font-weight: bold;
    padding: 1rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.priceDiv sup {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.priceDiv span {
    font-size: 1.4rem;
    margin-top: 1rem;
    margin-left: -0.7rem;
}
.description {
    text-align: center;
    font-weight: 500;
    line-height: 1.5rem;
    margin-bottom: 2rem;
}
button {
    border: 2px solid #303ca5;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #fff;
    color: #303ca5;
    margin-bottom: 0.5rem;
}
.underBtnText {
    font-size: 0.9rem;
    color: #73829e;
    margin-bottom: 2rem;
}
.whatsIncluded {
    font-size: 0.9rem;
    color: #73829e;
    margin-bottom: 1rem;
}
