* {
    margin: 0;
    padding: 0;
}

.navigation {
    font-family: var(--font1);
    /* background-color: rgb(212, 155, 114); */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {

    display: flex;
}

.nav-left span img {
    width: 100%;
    height: 55px;
    padding-top: 12px;
}

.nav-left ul {
    display: flex;
    align-items: center;
    margin: 0 77px;
    font-size: 22px;
    font-weight: bold;
}

.nav-left ul li {
    list-style: none;
    margin: 0 14px;
    font-family: var(--font2);
    transition: 0.3s ease-in-out;
}

.nav-left ul li :hover {
    background-color: var(--main-bg-color);
    font-weight: bolder;
}

.nav-left ul li a {
    text-decoration: none;
    color: black;
}

.nav-right {}

.content {
    display: flex;
    height: 100%;
    /* background-color: rgb(132, 173, 189); */
    margin-top: 12px;
    padding: 9px;
    position: relative;

}

.content::after {
    content: "";
    background-image: url("../img/home3.jpg");
    position: absolute;
    width: 100%;
    height: inherit;
    opacity: 0.15;
    border-radius: 12px;
}

.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: 300px;
    border: 2px solid black;
    border-radius: 700px;
}

.home-articles {
    /* height: 455px; */
    /* padding-top: 12px; */
    padding: 18px;
    background-color: rgba(231, 148, 148, 0.322);
    margin-top: 23px;
    position: relative;
}

.year-box {
    position: absolute;
    width: 351px;
    height: 255px;
    right: 0;
    top: 100px;
    font-size: 17px;
}
.year-box div{
    margin: 12px 0px;
}

.home-article {
    display: flex;
    margin: 18px;
}

.home-article img {
    width: 300px;
}

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

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

/* .home-articles{} */

.footer {
    height: 50px;
    background-color: rgb(95, 30, 30);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
}

.footer a {
    color: white;
}