
body{
    background-color: #212121;
}


h1,
h2,
p,
strong{
    color: #A3A3A3;
    font-family: 'Inter';
}

h1{
    margin: 60px auto;
    font-weight: 500;
    font-size: 30px;
}

h2{
    font-size: 23px;
    font-weight: 500;
    margin: 0 auto;
    width: fit-content;
    border-bottom: 1px solid #363636;
    padding: 0 10px 4px 10px;
}

#pricing_main{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 20px auto 0 auto;
    width: 1200px;
    justify-content: center;
    gap: 80px;
    padding-bottom: 150px;
}

.pricing_plan{
    display: flex;
    flex-direction: column;
    width: 280px;
    height: 390px;
    border: 1.5px solid #363636;
    border-radius: 50px;
    padding: 40px 30px;
    background-color: #1C1C1C;
}
#premium{
    border: 1.5px solid #6CB3FFCC;
}

.price{
    display: flex;
    flex-direction: row;
    margin: 30px 0;
    align-items: baseline;
}
#month{
    margin-left: 5px;
}

.strong_title{
    font-size: 21px;
    font-weight: 600;
    color: #C1C1C1;
}

.feature_card{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 14px 0;
}

.feature_card svg{
    margin: 3px 10px 0 0;
    flex: 0 0 12px;
}

.button_get{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 12px auto;
    height: 37px;
    width: 120px;
    border-radius: 10px;
    background-color: #6CB3FFE6;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.button_get:hover{
    background-color: #6cc9ff;
    box-shadow: 0 0 12px #6cb3ff1a;
}

.get_p{
    font-size: 19px;
    font-weight: 800;
    color: #1C1C1C;
}



@media (max-width: 1250px){
    #pricing_main{
        width: 800px;
    }
}

@media (max-width: 850px){
    #pricing_main{
        width: 423px;
    }
}

@media (max-width: 423px){
    #pricing_main{
        width: 90vw;
    }
}