* {
    /* It will be remove upper, left & right side spaces */
    margin: 0;
    padding: 0;
}

.navigation {
    font-family: 'Times New Roman', Times, serif;
    /* height: 70px; */
    /* background-color: aqua; */
    /* It's help to add flex propert -content align etc */
    display: flex;
    justify-content: space-between;
    /*It is set space between*/
    align-items: center;
    /*Item will be set on navigation center portions*/
}

.nav-left {
    font-size: 35px;
    display: flex;
    font-weight: bolder;
    color: rgb(11, 131, 206);
}

.nav-left ul {
    display: flex;
    /*it is help to grt text in one line*/
    align-items: center;
    margin: 0px 70px;
    font-size: 20px;
}

.nav-left ul li {
    list-style: none;
    /*Ti will remove side style of lists*/
    margin: 0px 15px;
    /*upper-bottm=0 & left-right=15*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.nav-left ul li a {
    font-weight: bold;
    text-decoration: none;
    /*It will remove under line of text*/
}

.nav-left ul li a:hover {
    color: var(--main-bg-color);
}

.nav-left img {
    height: 80px;
    width: 80px;
    z-index: -5;
}

.content {
    display: flex;
    height: 100%;
    border-radius: 20px;
    position: relative;

}
.content::after{
    content: "";
    background-image:url('../back2.jpg') ;
    position: absolute;
    width: 81%;
    height: inherit;
    border-radius: 20px;
    opacity: 0.1;
}


.content-left {
    display: flex;
    /* After these two lines will be work after display flex */
    /* align-items: center; */
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.content-left h1 {
    display: flex;
    justify-content: center;
    /* margin:100px 100px; */
}

.content-left p {
    display: flex;
    justify-content: center;
    margin: 0px 150px;
    font-size: 18px;
}

.content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-right img {
    height: 230px;
    width: 230px;
    margin-right: 100px;
    border: 2px solid black;
    border-radius: 200px;
}

.home-articles {
    /* height: 400px; */
    background-color: rgb(245, 245, 244,0.7);
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.year-box{
    position: absolute;
    width: 104px;
    height: 400px;
    right: 175px;
    top: 80px;
    font-size: 20 px;
    /* background-color: aqua; */
}

.year-box div{
    margin: 12px 0px;
}

.home-article {
    display: flex;
    /* padding: 50px; */
    margin: 30px;
}

.home-article img {
    height: 250px;
    width: 350px;
    border-radius: 5px;
}

.home-article-content {
    align-self: center;
    padding: 25px;
    font-style: initial;
}

.home-article-content a{
    text-decoration: none;
    color: var(--main-bg-color); 
}

.footer {
    height: 60px;
    background-color: var(--main-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: aliceblue;
    flex-direction: column;
}