@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@500&family=Overpass:wght@300&family=Righteous&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0px;
    padding: 0px;
}

body{
    background: radial-gradient(circle at 24.1% 68.8%, rgb(5, 5, 5) 0%, rgb(0, 0, 0) 99.4%);
}

/* .me{
    border-radius: 50%;
    width: 44px;
    height: 44px;
} */


/* NavBar Section */

.nav_name_role{
    margin-left: 10px;
    color: white;
    position: relative;
}

.name{
    color: yellow;
    font-size: 30px;
    font-weight:600;
}

.navbar{
    margin-top: 10px;
    overflow: hidden;
    position: sticky;

}

#nav_container1{
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    gap: 260px;
}

.navbar-toggler{
    color: #ffffff;
}


#nav_ul{
    display: flex;
    gap: 50px;
}

.nav_name_role p{
    margin-bottom: 0;
}

#nav_text{
    color: white;
    font-size:large;
}

 #mail_logo:hover{
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px #ffffff);
}


#nav_text::before,
#nav_text::after{
    content: '';
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #00fffc;
    transform: scaleX(0);
    transition: transform 0.25s;
}

#nav_text::before{
    top: -3px;
    transform-origin: left;
}
#nav_text::after{
    bottom: -3px;
    transform-origin: right;
}

#nav_text:hover::before,
#nav_text:hover::after,
.active::before,
.active::after{
    transform: scaleX(1);
} 


/* end of nav bar section */


/* Titles Section */

.title_subheading_date_container{
    width: 60%;
    margin: 50px auto 50px;
    text-align: center;
    border-bottom: 1px solid grey;
}


.main_title{
    color: white;
    font-size: 40px;
    font-weight: 600;
}

.sub_title{
    color: rgb(93, 93, 93);
    font-size: 23px;
    font-weight: 400;
}

.date_posted{
    color: white;
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 18px;
}

/* end of Title section */



/* Introductin section */

.blog_content{
    width: 60%;
    margin: 50px auto 50px;
}

.Introduction_heading,
.heading_no_2,
.heading_no_3,
.conclusion_heading{
    color: white;
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 2px;
}

.introduction_subtitle{
    font-size: 20px;
    color: rgb(93, 93, 93);
}

.introduction_content,
.Content_no_2-1,
.Content_no_2-2,
.Content_no_2-3,
.Content_no_3-1,
.Content_no_3-2,
.Content_no_3-3,
.conclusion_content{
    color: rgb(142, 142, 142);
    font-size: 18px;
    text-align: justify;
    line-height: 1.9;
}

.subheading{
    font-size: 21px;
    font-weight: 500;
    color: rgb(177, 165, 165);
    margin-top: 10px;
}

