html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: wheat;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1; /* Grow to fill available space */
  width: 92%;  
  margin: 0 auto;
  background-color: #FFFEF7;
  padding: 2rem;
  box-sizing: border-box;
}

.title {
  font-family: Bookman, URW Bookman L, serif;
  color: blue;
  font-size: xx-large;
  font-weight: bold;
}

.sub-title {
  font-family: Bookman, URW Bookman L, serif;
  color: grey;
  font-size: x-large;
  font-weight: bold; 
  margin-top: 10px; 
  margin-bottom: 10px;
}

.generic-text {
  font-family: Bookman, URW Bookman L, serif;
  color: black;
  font-size: large;
  text-align: justify;
  font-weight: 400;
}

.hyperlink-text {
  font-family: Bookman, URW Bookman L, serif;
  color: blue;
  text-decoration: underline;
  font-weight: bold;
  font-size: large;
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  flex-shrink: 0;
  width: 92%;
  margin: 0 auto;

  box-sizing: border-box;
}

.divider {
  border-top: 1px solid #bbb;
}

.grid-container-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1000px;
  padding: 10px;
}

.grid-container-index-resnume-override{
  max-width: 100%;
}

.grid-container-index img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 400px;
}

.grid-container-item{
  margin: 0 1rem
}

.nav-Bar-Background {
  background-color: #FFFEF7;
}

.nav-bar-button {
  font-size: 20px;
  line-height: 1.5;
  background-color: #FFFEF7;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-bar-button:hover {
  background-color: lightgray;
}

.nav-bar-element {
  margin-bottom: 1rem;
}

.bullet-point {
  list-style-type: square;
  color: blue;
}

.bullet-point li::marker {
  color: blue;
}

.skillset-entry {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.skillset-entry-text {
  flex-grow: 1;
  width: 50%;
  text-align: left;
  font-size: large;
}

.skillset-entry-value {
  flex-grow: 1;
  width: 50%;
  text-align: right;
  color: blue;
  font-size: large;
}