body {
  overflow-y: scroll;
}
main {
  padding: 0 11%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2%
}
main > div {
  flex-basis: 50%;
  max-width: 50%;
}
main > div > h2:first-child {
  font-size: 160%;
  margin-bottom: 0.5rem;
}
details {
  max-height: min-content;
  transition: height 1s linear;
}
details[open] {
  border-left: 1px solid var(--bg2);
}
details:not(:last-child) {
  margin-bottom: 0rem;
}
details > details {
  margin-left: 1rem;
  margin-top: 0;
}
details > details > summary > h2 {
  font-size: 130%;
  font-weight: normal;
  font-style: italic;
}
summary > h2 {
  font-size: 130%;
}
summary > * {
  display: inline;
}
summary {
  background-color: var(--bg);
  padding: 0.5rem;
  width: fit-content;
  transition: filter 0.25s ease-out;
}
summary:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
#achievements > ul > li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.logo {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
.job-title > i:not(.hons-tag) {
  font-weight: normal;
}
.edu-title {
  margin-bottom: 0rem;
}
.edu-disclaimer {
  margin-top: 0;
  padding-left: 0.5rem;
}
.module > p {
  padding-left: 2rem;
}
