*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;  
    width: 100%;
    background-color: rgb(232, 227, 218);                     
}

body{
    font-family: 'Poppins', sans-serif;
    position: relative;
 
   
    
}
.disaable-scroll{
    overflow: hidden;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3px;
    background-color: rgb(145, 54, 54);
    /* outline added to cover the little gap there is b/n the header and the main-img-container */
    outline: 1px solid  rgb(145, 54, 54);
    

}

section ,main{
    background-color: rgb(232, 227, 218);
    /* width: 100%; */
    
}


/* Navigation */
nav{

    margin: 1rem;

}

li{
    list-style: none;
}
a{
    text-decoration: none;
}
.nav-links {
    display: none;  
    position: absolute;
    left: 0;
    background-color:rgba(145, 54, 54 , 0.8);
    height: 10rem;
    z-index: 1;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    height: 100vh;
    width: 50vw;
    transition: all 0.5s ease-in-out;
}
.nav-links li{
    margin: 0.6rem 0;
}
.nav-links a{
    margin: 10rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border-bottom: 2px solid white;

}
.nav-links li:hover{
    transform: scale(1.3);
    transition: all 0.5s ease-in-out;
}
.active{
    display: flex;
}
.logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(34, 17, 17);
}
.hamburger{
    position: absolute;
    cursor: pointer;
    font-size: 2rem;
}
/* Main */

main{
    padding: 1rem 1rem 2.2rem 1rem;
}
.resource-img-container{
    width: 100%;
    overflow: hidden;
}
.resource-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* footer */
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    text-align: center;
    gap: 1rem;
    background-color: rgb(226, 156, 156);
}
.contact{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.email{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 1.2rem;
}
.copyright{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1rem;
}
.social-icons{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* for the renderd blog posts and articles */
.featured-title{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    color: #883d88;
    text-decoration: none;
    text-align: center;
    padding: 1rem 1rem 0.5rem  1rem;

}
.blog-article-title{
    text-align: center;
    margin: 1rem;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    color: rgb(182, 48, 90);
    text-decoration: none;
    padding: 1rem 1rem 0.5rem 1rem;

}
.ind-blogArticle{
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    background-color: rgb(220, 191, 164);
}
.ind-blogArticle p {
    text-align: center;
}
.blogTitle{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align:left;
    color:#3a1c3a;
    font-size: 1.1rem;
}


.ind-video-recommendation{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;  
    margin-bottom: 3rem;
}
iframe {
    width: 100%;
    height: 100%
}
.video-embed-link{
    display: flex;
    gap: 1rem;
    width: fit-content;
    justify-content: space-between;
    margin: 1rem;
    border-radius: 1rem;
}
.video-recommendation-title{
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 2.2rem;
    text-align: center;
    margin: 1rem;
    padding: 1rem 1rem 0.5rem 1rem;
    color: rgb(111, 45, 66);
}
.short-video-description{
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align:left;
    color:#3a1c3a;
    font-size: 0.9rem;
    text-align: center;
}
.eachVideo{
    display: flex;
    gap: 1rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 1rem;
    background-color: rgb(220, 191, 164);
}