body {
  max-width: 750px;
  margin: 30px auto;
  padding: 0 10px;
  font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #444;
}

h1, h2, h3 {
  line-height: 1.2;
}

h3 {
  text-align: center;
  margin-top: 2em;
}

ul {
  list-style: none;
  padding: 0;
}

li, p {
  font-size: medium;
}

.outer-list-text {
  font-size: large;
}

.inner-list-text {
  list-style: none;
  font-weight: lighter;
  font-size: small;
}

.list-top-margin {
  margin-top: 15px;
}

span {
  font-weight: lighter;
  font-size: smaller;
  vertical-align: middle;
}

.headline {
  text-align: center;
}

.subtitle {
  display: block;
  font-size: 0.55em;
  font-weight: normal;
  color: #888;
}

.row {
  display: flex;
  flex-direction: row;
}

.left {
  margin: 2px;
  flex: 65%;
}

.right {
  margin: 2px;
  flex: 35%;
}

.center-img-col {
  align-self: center;
  text-align: center;
}

.contact-me {
  align-self: center;
  margin-left: 30%;
  margin-right: 30%;
}

.icon {
  color: #444;
}

ul#contact-ul {
  display: flex;
  align-items: stretch; /* Default */
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}

#contact-ul li {
  display: block;
  flex: 0 1 auto; /* Default */
  list-style-type: none;
}

.img {
  max-width: 75%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
}

.skills-interests-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
}

.skills-column, .interests-column {
  flex: 1;
}

.skills-container {
  margin-bottom: 0;
}

.skill-category {
  margin-bottom: 8px;
  font-size: medium;
}

.skill-items {
  font-weight: normal;
}

.interests-container {
  margin-bottom: 0;
}

.interest-category {
  margin-bottom: 8px;
  font-size: medium;
}

.interest-items {
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  body {
    padding: 0 20px;
  }
  .row {
    flex-direction: column-reverse;
  }
  .contact-me {
    margin-left: 10%;
    margin-right: 10%;
  }
  ul {
    padding-inline-start: 0px;
  }
  span:not(.skill-items):not(.interest-items) {
    font-size: x-small;
    display: block;
  }
  .img {
    max-width: 60%;
  }
  .intro-text {
    text-align: center;
  }
  .skills-interests-row {
    flex-direction: column;
    gap: 10px;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    color: white;
    background: #121212;
  }
  .icon {
    color: white;
  }
}

/*# sourceMappingURL=index.css.map */