body{
  font-family:'Arial', sans-serif;
  font-size:  18px;
}

table {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-spacing: 0 10px; /* 10px vertical spacing between rows */
  border-collapse: separate; /* ensure spacing works */
}

.main-content {
  margin-left: 5%;
  margin-right: 5%;
  padding: 20px;
  width: 89%; /* Adjust the width to leave space for the side banner */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* Align items to the top */
  /*outline: 2px solid blue;*/ /*debug*/ 
}

.main-content > * {
  flex: 1 1 85%; /* Allow items to grow and take up available space */
  max-width: 85%; /* Prevent items from exceeding their container width */
}

.top-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  font-size:  14px;
  background-color: #FFD400;
  color: #f5f5f5;
}

.top-banner nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-banner nav ul li {
  display: inline-block;
}

.top-banner nav ul li a {
  display: block;
  padding: 7px 14px;
  text-decoration: none;
  color:black;
}

@media (min-width: 600px) {
  .top-banner {
    font-size: 18px;
  }
}

.header {
  padding-top: 50px;
  padding-bottom: 10px;
  width:100%;
  text-align:center;
  background-color: #FFF3C7; 
}

.headshot {
  max-width: 250px;
  max-height: 100%;
}

.publications {
  padding-bottom:5px;
}

.resource {
  margin-right:5px;
  font-weight:bold;
}