* {
    margin: 0%;
    padding: 0%;
}

.navigation {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    font-family: var(--font2);
    font-size: 23px;
}

.nav-left ul {
    display: flex;
    align-items: center;
    margin: 0px 65px;
    font-size: 18px;
}

.nav-left ul li {
    list-style: none;
    display: flex;
    margin: 0px 20px;
}

.nav-left ul li a:hover {
    text-decoration: underline;
}

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

}

.nav-left span a img {
    width: 75px;
    border-radius: 100%;
}

.nav-right form {
    display: flex;
    align-items: center;
}

.nav-right form button {
    width: 35px;
    background-color: white;
    border: none;
}

.nav-right form button:hover {
    background-color: rgb(208, 198, 252);
    border-radius: 8px;
}

.nav-right form input {
    margin-right: 2px;
}

.content {
    background-color: rgb(244, 242, 255);
    display: flex;
    flex-direction: column;
    border-radius: 13px;
}

.content-left {
    /* display: grid; */
    justify-content: center;
    flex-direction: column;
    padding: 0px 16px;
    z-index: 1;
}

/* .content h1 {
    margin: 16px 16px;
} */

.content-left p {
    font-size: 14px;
    word-spacing: 3px;
    padding-top: 10px;
    line-height: 24px;
}

.content-right {
    align-items: center;
    justify-content: center;
    background-color: rgb(244, 242, 255);
}

.content-right img {
    width: 360px;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-evenly;
    align-items: center;
}


.home-articles {
    /* background-color: #fdf4f6;     */
    padding: 20px 2px;
    border-radius: 13px;
    position: relative;
}

.home-article {
    display: flex;
}

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

.home-article-content a {
    text-decoration: none;
}

.home-article-content a h3 {
    cursor: pointer;
    color: black;
    text-decoration: none;
}

.home-article-img img {
    width: 250px;
    border-radius: 15px;
    margin: 8px 0px;
}

.home-articles-year {
    display: flex;
    font-size: 14px;
    justify-content: start;
    align-items: center;
    margin-bottom: 18px;
}

.home-articles-year div input {
    margin-left: 20px;
}

.footer {
    background-color: rgb(177, 150, 202);
    color: white;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font2);
}

