<!--
body {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  margin: 40px;
  line-height: 1.6;
  color: #0a3d3f;
}
-->
/*Poppins", system-ui, -apple-system, BlinkMacSystemFont,
  "Segoe UI", sans-serif*/
body {
  font-family: Avenir Next, sans-serif;
  margin: 40px;
  line-height: 1.6;
  color: #0a3d3f;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #009688;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

h1 {
  color: #006b6b;
  margin-bottom: 10px;
  font-family: Futura, sans-serif;
}

h2 {
  color: #008c7a;
  margin-top: 30px;
 font-family: Futura, sans-serif;
}

h3 {
  color: #000000;
  margin-top: 30px;
}

.profile-pic {
  width: 125px;
  border-radius: 8px;
  float: right; /* places it to the right side */
  margin-left: 20px;
  margin-bottom: 10px;
}

.team-pic {
  width: 125px;
  border-radius: 8px;
  float: left; 
  margin-left: 0px;
  margin-right: 40px;
  margin-bottom: 10px;
}

.bottom-space {
     margin-bottom: 150px;
  }

section {
  margin-top: 50px;   /* space above each section */
  margin-bottom: 50px; /* space below each section */
  padding: 0px;       /* optional: internal spacing inside section */
}


hr { 
  border: none;
  height: 2px;
  background-color: #008c7a; /* green/turquoise line */
  margin: 0px ;
}

ul li {
  margin-bottom: 15px; /* space below each item */
}

li.spaced {
  margin-top: 30px; /* adds extra space above this item */
}

/*<style>*/
a:link {
  color: #006b6b;
  background-color: transparent;
  text-decoration: none;
}


a:visited {
  color: #008c7a;
  background-color: transparent;
  text-decoration: none;
}