strong {
  font-weight: bolder;
  color: rgb(255, 255, 255);
}

#EducationAndWorkContainer {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
  overflow: hidden;
}

#EducationAndWorkInnerContainer {
  height: 90%;
  width: 90%;
  max-width: 900px;
  /* Added max-width */
  margin: 0 auto;
  /* Centered */
  display: flex;
  flex-direction: column;
  padding: 40px;
  /* Generous padding */
  overflow-y: auto;
}

#EducationAndWorkContainer h1 {
  text-align: center;
  font-size: 3em;
  align-self: center;
  margin-top: 10px;
}

#EducationAndWorkContainer h1,
h2 {
  /* Site-wide Aldrich on headings (inherits from index.css). */
  font-weight: bold;
  color: rgb(240, 240, 240);
}

#EducationAndWorkInnerContainer .Info {
  height: 100%;
  padding: 10px;
  align-self: center;
  width: 90%;
  overflow-y: auto;
}

#EducationAndWorkInnerContainer .Info .Block {
  margin: 0 10px;
  max-width: 100%;
}

#EducationAndWorkInnerContainer .Info .Block h4 {
  color: rgb(240, 240, 240);
  /* Site-wide Aldrich on headings (inherits from index.css). */
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

#EducationAndWorkInnerContainer .Info .FlexRow {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
}

#EducationAndWorkInnerContainer .Info .Block p {
  margin-left: 10px;
  color: rgb(200, 200, 200);
  font-size: 1.1rem;
  line-height: 1.6;
}

#EducationAndWorkInnerContainer .Info .Block a {
  color: rgb(var(--blue-bright));
  font-weight: bold;
}

#EducationAndWork hr {
  width: 100%;
  margin: 25px 0px;
  border: 0;
  height: 2px;
  background-image: linear-gradient(to left,
      rgba(117, 117, 117, 0),
      rgba(117, 117, 117, 0.75),
      rgba(117, 117, 117, 0));
}