#pricing{
    background-color: #1F1F1F;
    padding-top: 80px;
    padding-bottom: 80px;
}

.pricing-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-text{
    font-size: 20px;
}

#pricing-paragraph{
    color: #AEAEAE;
}

.card {
    opacity: 0;
    background: transparent;
    border: 1px solid #AEAEAE;
    color: white;
    border-radius: 16px;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    /* animation: fadeUp 0.8s ease-out;
    animation-fill-mode: forwards;
    animation-duration: auto;
    animation-timeline: view();  */
    /* width: 313px; */
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* #card-individual{
    animation-delay: 0s;
}

#card-group-of-2{
    animation-delay: 0.2s;
}

#card-group-of-3{
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.card:hover{
    border: 1px solid white;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
}

.card-subtitle{
    font-size: 14px;
    color: #AEAEAE;
}

.price{
    font-size: 53px;
    font-weight: bold;
}

.price-subtext{
    font-size: 14px;
    font-weight: 400;
    color: #AEAEAE;
}

.checkmark{
    color: #A90000;
}

.price-item{
    color: white;
}

.pricing-button{
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.pricing-button:hover{
    background-color: #161616;
}