body, html {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  .container {
    display: flex;
    min-height: calc(100vh - 50px); /* Adjust for footer height */
  }
  .left-column {
    width: 20%;
    background-color: #f0f0f0;
    padding: 20px;
  }
  .center-column {
    width: 60%;
    background-color: #ffffff;
    padding: 20px;
  }
  .right-column {
    width: 20%;
    background-color: #f0f0f0;
    padding: 20px;
  }
  
  .footer {
    width: 100%;
    height: 50px;
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 50px;
  }
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .left-column, .center-column, .right-column {
      width: 100%;
    }
  }

  body {
    font-family: 'Merriweather';
    font-size: 13px;
    color: #333333; /* Dark gray for main text */
}

h1, h2 { /* Main headers */
    font-family: "Aboreto";
    color: #3D84B8;
    size: 180%;
}

h3, h4, h5, h6 { /* Section headers */
    font-family: "Aboreto";
    size: 140%;
    color: #3D84B8;;
}


a, a:visited{
    font-family: "Aboreto";
    text-decoration: none;
    color: #3D84B8;
    font-weight: bold;
    line-height: 130%;
    font-size: 120%;
}

ul{
    list-style: none;
}

#bio{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.circle-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

