* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Varta', sans-serif;
    background-color: #f2f2f2;
    color: #343742;
  }
  
  a{
  color:#006633;
}

  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
  }

  .header {
    text-align: center;
    color: white;
    padding: 15px;
    width: 100%;
    text-align: left;
  }
  .header img{
    width: 160px;
    height: auto;
  }

  .nav {
    background-color: #006633;
    display: block;
    width: 100%;
    justify-content: space-around; /* Adjust alignment as needed */
    padding: 10px;
  }

  .nav a {
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 5px 0;
    /*border-radius: 5px;*/
    transition: background-color 0.3s;
  }

  /*.nav a:hover {
    background-color: #2f352b;
  }*/

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #006633;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    transition: opacity 0.4s ease-in-out;
  }

  .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
  }

  .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #006633;
      color: #f3efe0;
  }

  #main-content {
    flex: 1;
    padding: 20px 80px;
    margin: 20px 0;
    min-height: 600px;
  }

  .footer {
    text-align: center;
    background-color: #006633;
    color: white;
    padding: 15px;
    width: 100%;
    margin-top: 20px;
  }

.column {
    flex: 1;
    padding: 20px;
    margin: 10px;
    background-color: #f1f1f1;
}
#timeline-container{
  width: 100%;

}
.card-block{
  overflow: hidden;
}
.card-block ul{
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
}
.menublock ul{
    list-style-type: none;
}
.card-block li{
    float: left;
}

.card {
    width: 320px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px;
    padding: 20px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .card-item{
    width: 100%;
  }
  /* Style for the circular container */
  .circle-container {
    width: 80px; /* Adjust the size of the circle */
    height: 80px;
    border-radius: 50%; /* Makes it a circle */
    overflow: hidden; /* Ensures the image doesn't overflow */
    border: 1px solid #000;
    float: left;
  }

  /* Style for the image inside the circle */
  .circle-container img {
    width: 100%; /* Make the image fill the circle */
    /*display: block; /* Removes extra spacing below the image */
  }
  span{
    padding: 0;
  }
  .card-info{
    width: 200px;
    line-height: 16px;
    margin-left: 4px;
    float: left;
}
.card-info .info-name{
 font-weight: bold;
}
.card-info .info-role{
    font-size: 12px;
    color:#333;
   }
   .card-info .info-affiliation{
    font-size: 12px;
    font-style: italic;
    color:#333;
   }
   .card-info .info-email{
    font-size: 12px;
    color:#333;
   }
.search-bar{
    width: 90%;
    margin: 10px auto;
    padding: 12px;
    text-align: center;
}
.search-bar button{
    width: 8%;
    font-size: 18px;
    height: 48px;
}
.search{
    width: 80%;
    font-size: 18px;
    height: 48px;
}

/* make this update*/
.container-home{
  margin: 0 auto; width: 68%; float: left;
}
@media only screen and (max-width: 430px) {
  .container-home {
    margin: 0 auto; width: 100%; float: left;
  }

  #main-content {
    flex: 1;
    width: 50%;
    padding: 10px 10px;
    margin: 20px 0;
    min-height: 600px;
  }
  
  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    background-color: white;
    display: flex;
    flex-wrap: wrap;

}