*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial, sans-serif;
    background-color: #1A1A1A;
}

img{
    display: block;
    margin: 0 auto;
    margin-top: 20px;
}

p,h1{
    margin: 0;
    padding: 0;
    text-align: center;
}
h1{
    color: #FF6B6B;
}
p{
    color: #848484;
}


    /* Header Done */
    /* Pricing Card */


.pricing-container{
    display: flex;
    justify-content: center;
    gap: 25px; 
    padding: 40px;

}

.pricing-card{
    border: 1px solid #333333;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); 
    width: 250px;
    height: 500px;
    justify-content: center;
    align-items: center;
    text-align: center;
}    

.beginner{
    background-color: #262626;
}


li{
    list-style: none;
}

.pricing-card h2{
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    padding-top: 20px;
    text-align: center;

}
.icon{
    display: block;
    text-align: center;
    font-size: 30px;
    padding-bottom: 30px;
    
}
.price-block{
    font-size: 26px !important;
    color: #333;
    margin: 20px 0;
    text-align: center;
    border: 2px solid #333333;
    border-radius: 10px;
    margin: 0px 0;
    padding: 25px 50px;
    display: inline-block;
    line-height: 1;
    color: #FF6B6B;
    background-color: #303030; 
    font-weight: 700; 
    }
.period{
    font-size: 12px;
    color: #7A7A7A;
    margin-top: 8px; 
}
.features li{
    text-align: left;
    padding: 10px;
}
.features{
    margin-top: 15px;
    color: #CBCBCB;
    font-size: 11px;
    padding: 15px;
}
.disabled{
    color: #5C5C5C;
}

/* Beginner Complete */
/* Warrior and Champion */

.warrior{
    border: 1px solid #ff5252;
    position: relative;
    background-color: #312222;
}
.pricing-container .warrior .price-block{
    background-color: #3C2D2D;
    border: 0.1px solid #3C2D2D;
}
.champion{
    border: 1px solid #ffdd57;
    background-color: #312D1D;
}
.pricing-container .champion .price-block{
    background-color: #3C3829;
    color: #FFD93D;
}

/* Popular Tag */
.popular-tag{
    border: 1px solid #FFD93D;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 800;
    background-color: #FFD93D;
    color: rgb(8, 8, 8);
    position: absolute;
    top: -20px;
    left: 26%;
}
