@charset "UTF-8";
:root {
  --column-direction: column;
}
@media screen and (min-width: 800px) {
  :root {
    --column-direction: row;
  }
}

body, html {
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: hidden;
  font-family: "macha", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-overflow-scrolling: auto;
}

ul {
  padding-left: 1em;
  list-style: none;
}
ul li::before {
  content: "•";
  color: #5ad0ba;
  display: inline-block;
  font-weight: bold;
  width: 1em;
  margin-left: -1em;
}
ul li li::before {
  content: "‣";
  color: #e54623;
}

#wrapper, #loader {
  position: relative;
  height: 100%;
  background-color: black;
  color: white;
}

body.loading #wrapper {
  display: none;
}

body:not(.loading) #loader {
  display: none;
}

@keyframes pulse {
  0% {
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  100% {
    border-top-width: 5px;
    border-bottom-width: 5px;
  }
}
#loader {
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader div {
  animation: pulse 0.5s ease-in alternate infinite;
  border-color: white;
  border-style: solid;
  border-left-width: 0px;
  border-right-width: 0px;
  padding: 0.5em 0;
}

#wrapper {
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 800px) 1fr;
  color: #1c2127;
  overflow-y: scroll;
}
#wrapper #back {
  position: absolute;
  top: 1em;
  left: 1em;
  background-color: white;
  padding: 0.5em 1em 0.5em 0.8em;
  border-radius: 1.5em;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  gap: 0.25em;
}
#wrapper #back svg {
  width: 15px;
  height: 15px;
}
#wrapper #back svg polyline {
  fill: transparent;
  stroke: black;
  stroke-width: 1px;
}
#wrapper #back:hover {
  background-color: #5ad0ba;
}
#wrapper #back:hover svg polyline {
  stroke-width: 2px;
}
#wrapper .fluid.l {
  background-color: #1c2127;
  background-image: url(../img/pattern.svg);
  background-size: 150px 86.6px;
}
#wrapper .fluid.r {
  background-color: #5ad0ba;
}
#wrapper #content {
  background-color: white;
  padding: 4em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
}
#wrapper #content #header #title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2em;
}
#wrapper #content #header #title div {
  flex: 1 1 0;
}
#wrapper #content #header #title img {
  width: 150px;
  border-radius: 50px;
  float: right;
}
#wrapper #content #header #intro {
  color: #5ab8d0;
  font-size: 1.5em;
}
#wrapper #content h3 {
  align-self: stretch;
}
#wrapper #content a {
  display: inline-flex;
  background-color: #5ab8d0;
  padding: 0.5em 0.5em 0.5em 1em;
  text-decoration: none;
  border-radius: 2em;
  color: white;
  align-items: center;
}
#wrapper #content a:after {
  content: " ";
  width: 15px;
  height: 15px;
  flex: 1 1 15px;
  background-repeat: no-repeat;
  background-image: url(img/dd.svg);
  background-position: center right;
}
#wrapper #content a:hover {
  background-color: #5ad0ba;
}
#wrapper #content a:not(:first-of-type) {
  margin-top: 0.5em;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

h1 {
  font-weight: 100;
  font-size: 3em;
}

h3 {
  border-top: solid 1px black;
  padding-top: 0.5em;
}

h4:first-of-type {
  margin-top: 1em;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition-property: visibility, transform, opacity;
  transition-duration: 0.2s;
  transform: scale(98%);
  transition-delay: 0s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 2em;
  box-sizing: border-box;
  overflow-y: scroll;
}
#lightbox.visible {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
#lightbox #close {
  text-align: right;
  cursor: pointer;
  padding: 1em;
  box-sizing: border-box;
}
#lightbox #close svg {
  stroke-width: 1px;
  width: 20px;
  height: 20px;
}
#lightbox #close:hover svg {
  stroke-width: 2px;
}
#lightbox #panel {
  height: calc(100% - 20px - 2em);
  display: flex;
  justify-content: center;
}
#lightbox.light {
  background-color: white;
}
#lightbox.light #close svg {
  stroke: black;
}
#lightbox.dark {
  background-color: black;
}
#lightbox.dark #close svg {
  stroke: white;
}
#lightbox.grey {
  background-color: #aaaaaa;
}
#lightbox.grey #close svg {
  stroke: #333333;
}
#lightbox.center #panel {
  align-items: center;
}
#lightbox.center #panel img {
  width: 100%;
  height: 100%;
  flex: 1 1 0;
  min-height: auto;
  object-fit: scale-down;
}
#lightbox.scroll #panel {
  align-items: flex-start;
}
#lightbox.scroll #panel img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.columns {
  display: flex;
  flex-direction: var(--column-direction);
  gap: 2em;
  width: 100%;
}
.columns > div {
  flex: 1 1 0;
}

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