/* <style> */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;500;600;700&display=swap');
/* </style> */

body{
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter', sans-serif;
}
/* p{
    margin: 10px;
} */
.container{
    max-width: 85%;
    margin: auto;
}
.anniversry-banner{
    width: 100%;
    display: block;
    /* filter: invert(1); */

}
.blog-header{
    margin:3rem 0 3rem 0;
    text-align: center;
}
.main{
    padding: 0;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 100vh;
    /* user-select: none; */
}
.blog{
    /* border: 1px solid #000; */
    border-radius: 6px;
    box-shadow: 2px 2px 6px #ccc;
    padding: 2rem;
    transition: all 0.4s;
    margin-bottom: 3rem;
    /* display: flex; */
    /* align-items: center; */
}
.quote{
    font-weight: 800;
    margin-right: 5px;
    font-size: 3rem;
    color: #ccc;
}

.blog:hover{
    transform: translateY(-8px);
    background-color: #fafafa;
}
.blog-content{
    /* letter-spacing: 0.5px; */
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4
}
.post{
    margin: 0 1rem;
}
.blog-auhor-img{
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name{
    margin: 1rem 0 1.4rem 0 ;
}
.read-more{
   font-weight: bold;
   cursor: pointer;
}
.blog-author{
    text-align: center;
    /* margin: 2rem 0; */
}

.blog-block{
    border-radius: 6px;
    box-shadow: 4px 4px 8px #ccc;
    padding: 1rem;
    border: 1px solid #cccccc;
}
.blog-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blog-paragraph{
    font-weight: bold;
    text-align: center;
}
.footer-wrap{
    background-color: #cfeaf3;

}
.footer{
    width: 100%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
a{
    text-decoration: none;
    color: none;
}

.social-links{
    /* display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-evenly; */
    font-size: 24px;
    word-spacing: 1rem;
}
.fb{
    color: #4267B2;
}
.fa-twitter{
    color: #1DA1F2;
}
.fa-instagram{
    color: #E1306C;
}
.fa-linkedin{
    color: #405DE6;
}

@media (max-width: 480px) {
    .blog-auhor-img{
    width: 120px;
    height: 120px;
    }
    .footer{
        flex-direction: column;
    }
    .gunadhya-name{
        margin-bottom: 1rem;
    }
}


