.blogcontainer{
    /* width: 1000px; */
    display: flex;
    justify-content: center;
   gap: 20px;
   margin-top: 70px;
   padding: 10px;
}
.blogcard{
    width: 550px;
    height: auto;
    background-color: rgb(201, 227, 248);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    
}
.blogcard h3{
    text-align: justify;
    font-size: 22px;
    color: rgb(12, 83, 165);
    font-family: spectral;
    font-weight: 550;
    margin-top: 20px;
}
.blogcard p{
    text-align: justify;
    font-size: 15px;
    color: rgb(33, 33, 33);
    font-family: poppins;
    margin-top: 20px;
    margin-bottom: 30px;
    
}
.blogcard img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.blogcard h4{
    text-align: justify;
    font-size: 18px;
    color: rgb(60, 61, 61);
    font-family: spectral;
    font-weight: 550;
    margin-top: 20px;
}
.blogcard a{
    text-decoration: none;
}
.blog1 img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blogcontent{
    width: 70%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}
.blogcontent h1{
    text-align: center;
    font-size: 28px;
    color: rgb(12, 83, 165);
    font-family: spectral;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 50px;
}
.blogcontent p{
    text-align: justify;
    font-size: 16px;
    color: rgb(33, 33, 33);
    font-family: poppins;
    margin-bottom: 30px;
    
}
.blogcontent h2{
    text-align: left;
    font-size: 22px;
    color: rgb(12, 83, 165);
    font-family: spectral;
    font-weight: 550;
    margin-top: 30px;
}
.blogcontent ol{
    font-size: auto;
    font-family: poppins;
}

@media (max-width:600px){
    .blogcontainer{
        flex-direction: column;
        align-items: center;
    }
    .blogcard{
        width: 90%;
        margin-bottom: 30px;
    }
    .blogcontent h1{
        font-size: 20px;
    }
    .blogcontent{
        width: 90%;
    }

}


