
* {
  margin: 0;
  padding: 0; 
}


  .navigation {
    margin-top: 25px;
    font-family: var(--font1);
    /* height: 74px;  */
    display: flex;
    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: 25px;
  padding-bottom: 23px;
}

.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%;
  display:flex;
  margin-top: 32px;
  padding: 9px;
  position: relative;
}

@media only screen and (max-width:300px)
{
      /* For mobile phones: */
      [class*=".content::after-"] 
      {
        width: 100%;
      }
}


.content::after {
  content: "";
  background-image: url("../img/main_bg_img_home-1.jpg");
  position: absolute;
  width: 100%;
  height: inherit;
  opacity: 0.3;
  border-radius: 15px;
}

@media only screen and (max-width: 500px)
{
      /* For mobile phones: */
      [class*=".content-left-"] 
      {
        width: 300rem;
      }
}


.content-left {
  font-family: var(--font1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 49px;
  z-index: 2;
}

.content-right {
  background: "";
  border-radius: 200%;
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}


.content-right img {
  height: 355px;
  width: 355px;
  border: 2px solid black;
  border-radius: 200px;
}




.home-articles {
  padding: 10px;
  background-color: rgba(255, 203, 203, 0.5);
  margin-top: 23px;
  position: relative;
}

.year-box {
  position: absolute;  
  right: 0px;
  top: 100px;
  width: 234px;
  height: 255px;
  font-size: 18px;
}

.year-box div {
  margin: 12px 0px;
}

.home-article {
  display: flex;
  margin: 25px;
}

.home-article img {
  width: 298px;
}

.home-article-content {
  align-self: center;
  padding: 50px;
}

.home-article-content a {
  text-decoration: none;
  color: black;
}
/* .home-articles{} */
.footer {
  height: 80px;
  background-color: var(--main-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  flex-direction: row;
}

.footer a {
  color: white;
}


.circle {
  height: 10px;
  width: 10px;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
}


