* {
    margin: 0;
    padding: 0;
}

.navigation {
    margin-top: 25px;
    font-family: var(--font1);
    height: 74px;
    display: flex;
    background-color: bisque;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
}

.nav-left span {
    font-size: 35px;
    padding-top: 10px;

}

.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: all 0.3s ease-in-out;
}



.nav-left ul li a {
    text-decoration: none;
    color: black;

}

.nav-left ul li a:hover {
    color: var(--main-bg-color);
    font-weight: bolder;
}

.content {
    height: 100%;
    /* background-color: rgb(221, 221, 228); */
    display: flex;
    margin-top: 32px;
    padding: 9px;
    position: relative;
}

.content::after {
    content: "";
    background-image: url(https://cdn.pixabay.com/photo/2016/05/24/16/48/mountains-1412683__480.png);
    position: absolute;
    width: 100%;
    height: inherit;
    opacity: 0.25;
    border-radius: 12px;
}

.content-left {
    font-family: var(--font1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 49px;
    z-index: 1;
}

.content-left h1 {
    font-style: italic;
}

.content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-right img {
    width: 355px;
    height: 355px;
    border: 2px solid black;
    border-radius: 200px;
}

.home-articles {
    padding: 18px;
    margin-top: 23px;
    position: relative;
    border-radius: 28.5px;
}

.year-box {
    position: absolute;
    width: 234px;
    height: 255px;
    right: 180px;
    top: 80px;
    font-size: 18px;
}

.year-box div {
    margin: 12px 0px;
}

.home-article {
    display: flex;
    margin: 25px;
}

.home-article img {
    width: 234px;
}

.home-article-content {
    align-self: center;
    padding: 25px;
}

.home-article-content a {
    text-decoration: none;
    color: black;
}

.nav-right {}




.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: black;
}