body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 300;
  color: #666;
  padding: 50px;
  background-color: #f9f9f9;
  transition: 0.3s;
  fill: #666;
}

.body-invert-color {
  color: #bbb;
  background-color: #202124;
}

.wrapper {
  width: 860px;
  margin: 0 auto;  
}

.contact {
  display: inline-block
}

b {
  font-weight: 500;
  color: #333;
}

.b-invert-color {
  color: #ddd
}
 
a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  fill: #333;
}

a:hover {
  color: #aaa;
  fill: #aaa;
  text-decoration: underline dotted;
}

.a-invert-color {
  color: #ddd;
  fill: #ddd;
}

.a-invert-color:hover {
  color: #777;
  fill: #777;
}

.name-header {
  display: flex; 
  flex-direction: row; 
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 24px;
}

.name-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.profile-section { 
  display: flex; 
  flex-direction: row; 
  gap: 32px; 
  align-items: center
}

.profile-pic {
  height: 240px; 
  width: 240px;
  border-radius: 20px;
}

h2 {
  margin-top: 48px;
}

h4 {
  margin-top: 24px;
  margin-bottom: 16px;
}

p {
  line-height: 24px;
}

strong {
  font-weight: 500;
  color: #333;
  background-color: #dfdfdf;
  display: inline-block;
  border-radius: 4px;
  padding: 0 2px;
}

.strong-invert-color {
  color: #ddd;
  background-color: #555;
}

.text-table {
  margin: 20px 0;
}

.text-row {
  margin: 6px 0;
}

.text-row:first-child {
  font-size: 18px;
}

.text-column {
  margin-right: 8px;
}

.text-column svg {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.footnote {
  font-size: 0.85em;
  color: #888;
  margin-top: 12px;
}

.icon {
  color: #fbfbfb;
  fill: #fbfbfb;
  background-color: #333;
  height: 32px;
  width: 32px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px !important;
  cursor: pointer;
}

.icon:hover {
  text-decoration: none;
  background-color: #aaa;
  color: #fbfbfb;
  fill: #fbfbfb;
}

.icon-invert-color {
  background-color: #aaa;
  color: #202124;
  fill: #202124;
}

.icon-invert-color:hover {
  background-color: #777;
  color: #202124;
  fill: #202124;
}

.icon-container {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.fa-2x {
  font-size: 2em;
}

.short {
  display: none;
}

.long {
  display: inline;
}

#load-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print, screen and (max-width: 960px) {
  div.wrapper {
    width:auto;
    margin:0;
  }

  header, section, footer {
    position:static;
    width:auto;
  }
}

@media print, screen and (max-width: 730px) {
  body {
    padding:15px;
  }

  .profile-section {
    display: block;
  }
  .name-container {
    display: block;
  }
  .name-header {
    display: block;
    text-align: center;
  }
  .contact {
    margin-top: 8px;
  }
  .short {
    display: inline;
  }
  .long {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: #bbb;
    background-color: #202124;
  }
  .body-invert-color {
    color: #666;
    background-color: #f9f9f9;
  }
  b {
    color: #ddd;
  }
  .b-invert-color {
    color: #333;
  }
  a {
    color: #ddd;
    fill: #ddd;
  }
  .a-invert-color {
    color: #333;
    fill: #333;
  }
  a:hover {
    color: #777;
    fill: #777;
  }
  .a-invert-color:hover {
    color: #aaa;
    fill: #aaa;
  }
  strong {
    color: #ddd;
    background-color: #555;
  }
  .strong-invert-color {
    color: #333;
    background-color: #dfdfdf;
  }
  .icon {
    color: #202124;
    fill: #202124;
    background-color: #aaa;
  }
  .icon-invert-color {
    color: #fbfbfb;
    fill: #fbfbfb;
    background-color: #333;
  }
  .icon:hover {
    background-color: #777;
    color: #202124;
    fill: #202124;
  }
  .icon-invert-color:hover {
    background-color: #aaa;
    color: #fbfbfb;
    fill: #fbfbfb;
  }
}
