body{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main{
  flex-grow: 1;
  padding-bottom: 10%;
}

.footer {
    bottom: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid #485fbe;

    }

  .bio{
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 2rem;

  }

  .bio a {
  color: #2a5897;
  text-decoration: none;
  font-weight: 500;
}

  .bio a:hover {
    text-decoration: underline;
  }

  .accordion{
    display: flex;
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    margin:auto;
    max-width: 60%;
    padding: 1rem;
  }
  
  .accordion .accordion-button:not(.collapsed) {
    background-color: #ccd6f6;
    color: #1e2e45;
    font-weight: bold;
    border-radius: 6px;
    border-color: #1e2e45;
  }

  .accordion .accordion-button.collapsed {
    border-radius: 6px;
    color: #1e2e45;
    font-weight: bold;
    border-radius: 6px;
    border-color: #1e2e45;
  }
  
  .btn-secondary{
    margin-bottom: 1rem;
    background-color: #1e2e45;
    color: #ccd6f6;
  }

  .btn-secondary:hover {
    margin-bottom: 1rem;
    background-color:#ccd6f6;
    color: #1e2e45;
  }

  .btn-tertiary{
    margin-bottom: 1rem;
    color: #1e2e45;
  }

  .btn-tertiary:hover {
    margin-bottom: 1rem;
    color: #1e2e45;
    border-color: #1e2e45;
  }
  
  .centered-buttons .btn {
    display: block;
    margin: 0 auto 1rem auto;
  }
  /* Desktop Section */
  @media (min-width: 992px) {
     .bio{
      position:relative;
      max-width: 992px;
      margin-left: auto;
      margin-right: auto;
      padding-top:30px;


  }
}