* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    width: 100%;
    position: relative;
    font-family: 'Poppins', 'sans-serif'
}


.ri-toggle-line {
    font-size: 3rem;
}

.ri-toggle-fill {
    font-size: 3rem;
    display: none;
}


::selection {
    background: #1b1b1b;
    color: #fff;
}


.navbar {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw;
    background: #fff;
    z-index: 9;
}


.navbar .logo {
    font-style: italic;
    font-size: 1.5rem;
}


.links-container {
    display: flex;
    list-style: none;
}


.link {
    padding: 10px;
    margin-left: 10px;
    text-decoration: none;
    text-transform: capitalize;
    color: #000;
}



.header {
    margin-top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    background: url(../img/background1.jpg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}



.content {
    text-align: center;
}


.heading {
    display: block;
    font-size: 40px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}


.heading .no-fill {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}


.btn {
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
}



.blog-section {
    width: 100%;
    padding: 50px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}



.blog-image {
    width: 375px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 2rem;
}


.article-image {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}



.blog-overview {
    margin: 10px 0 20px;
    line-height: 30px;
}


.btn.dark {
    background: #1b1b1b;
    color: #fff;
}



@media (max-width: 1000px){
    .blog-section {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px){
    .blog-section {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
}




@media (max-width: 430px){
   .blog-image {
    width: 275px;
    height: 250px;
}

.article-image {
    width: 250px;
    height: 250px;
}

}