* {

    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .navbar-light .navbar-nav .nav-link  {
    color: black !important;
  }

  .section-header-div {
    background-color: #006266;
    margin-bottom: 25px;
    padding-top: 10px;
    padding-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 2px;
  }

  body {
    background: #d2d4e3;
  }
  
  header {
    background: white;
    padding: 1rem;
    font-weight: bold;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    justify-content: space-evenly;
  }
  
  nav a {
    color: gray;
    text-decoration: none;
  }
  
  nav a:hover {
    color: #ccc;
  }

  .profile-image {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    border-style: groove;
    object-fit: cover; /* this will prevent image distortion */

  }
  /* all the content should be centered */
  main {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    width: 65%;
    box-sizing: content-box;
  }
  
  @media (max-width: 768px) { /* Adjust for screens smaller or equal to 768px wide */
    main {
        width: 90%;
    }
}
  
  section {
    margin-bottom: 2rem;
  }
  
  h1, h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  h4 {
    font-size: 20px !important;
  }

  h5 {
    font-size: 18px !important;
  }

  footer {
    background: white;
    color: gray;
    text-align: left;
    padding: 1rem;
    font-weight: bold;
    /*align to the bottom of the page*/
    left: 0;
    bottom: 0;
    width: 100%;

    }