@font-face {
    font-family: 'Baloo2';
    src: url(Font/Baloo2-ExtraBold.ttf), url(Font/Baloo2-Bold.ttf), url(Font/Baloo2-Regular.ttf);
    font-weight: bolder;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.blog-details-container {
    max-width: calc(950px);
    margin: auto;
    text-align: center;
    /* border: 2px solid rgb(0, 255, 0); */
}


/* ----------------------blog title------------------------ */


.blog-tile {
    /* border: 2px solid rgb(162, 255, 0); */
    margin-top: 150px;
}
.blog-tile h1 {
    /* border: 2px solid red; */
    font-family: 'Baloo2';
    font-weight: bolder;
    font-size: 80px;
    line-height: 90px;
    margin: auto;
}

@media screen and (max-width:800px) {

    .blog-tile {
        /* border: 2px solid rgb(162, 255, 0); */
        margin-top: 130px;
    }
    .blog-tile h1 {
        
        font-family: 'Baloo2';
        font-weight: bolder;
        font-size: 40px;
        line-height: 42px;
        margin: auto;
    }
}
/* ----------------------blog img------------------------ */


.blog-tile-img {
    margin-top: 50px;
}
.blog-tile-img img {
    width: 80%;
    border-radius: 12px;
}
.blog-tile-img p {
    font-size: 14px;
    font-style: oblique;
}

@media screen and (max-width:800px) {
    .blog-tile-img img {
        width: 100%;
        border-radius: 12px;
    }
}

/* ----------------------blog details------------------------ */


.blog-details{
    margin-top: 50px;
}

.blog-details p{
    font-size: 19px;
    line-height: 1.9;
    text-align: left;
    font-weight: 500;
}

.blog-details h1{
    /* border: 2px solid red; */
    font-family: 'Baloo2';
    font-weight: bolder;
     
    line-height: 90px;
    text-align: left;
}

@media screen and (max-width:800px) {
    .blog-details{
        margin-top: 50px;
        width: 90%;
    }
}
