*{
    margin: 0;
    padding:0;
    text-decoration: none;

}
.navigation{
    margin-top: 25px;
    font-family: var(--font1);
    /* height: 75px;                    */
    /* background-color: rgb(156, 149, 145);  */
    display: flex;
    justify-content:space-between;
    align-items: center;

}
.nav-left{
    font-size: 35px;
    display: flex;

}
.nav-left span{
    font-size: 35px;
    padding-top: 10px;
}
.nav-left ul{
    display:flex;
    align-items: center;
    margin: 0 77px;
    font-size: 25px;
}
.nav-left ul li{
    list-style-type: none;
    margin: 0 14px;
    font-family: var(--font2);
    transition: all 0.3s ease-in-out;
  
}

.nav-left ul li a{
    text-decoration: none;
    color: black;
    margin: 0 14px;
    font-family: var(--font2);
    
}
.nav-left ul li a:hover{
    color: var(--main-bg-color);
      font-weight: bolder;
}
.nav-right{
    
}
.content{
height:100%;
 display: flex;
 /* background-color:rgb(237, 237, 250); */
 margin-top: 32px;
 padding: 9px;

position: relative;          
}
.content::after {
content: "";
/* background-color:rgb(255, 198, 113); */
background-image: url('../img/12.png');
position: absolute;
width: 100%;
height: inherit;
opacity: 0.15;

}
.content-left{
font-family: var(--font1);
display: flex;
flex-direction: column;
    justify-content: center;
    padding: 50px;
    z-index: 1;
}
.content-right{
    display: flex;
    align-items: center;
    justify-content: center;

}

.content-right img{
    height: 355px;
    border: 2px solid black;
    border-radius: 200px;
}

.home-articles{
padding: 12px;
background-color: rgba(255, 237, 204,0.5);
position: relative;
}
.year-box{
    /* position: absolute; */
    /* width: 234px;
    height: 255px; */
    /* background-color: red; */
    right:80px;
    top: 100px;
}
.year-box div{
    margin: 12px 0px;
    font-size: 18px;
}
.home-article{
 display: flex;
 margin:25px

}
.home-article img{
    width: 300px;
}
.home-article-content{
    align-self: center;
    padding: 25px;
}
.home-article-content a{
 color: black;
}
.footer{
    height: 50px;
    background-color:var(--main-bg-color );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}
.footer a{
    color: white;
}
