@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans&display=swap");
* {
  color: #7ccafd;
  font-family: 'Alegreya Sans', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.card {
  max-width: 100%;
  padding: 1em;
  background-color: #2F2F2F;
}

.skill-card h2 {
  white-space: nowrap;
}

.project-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 1em;
}

.project-card > *:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.project-card .screenshot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(min(100%, 15em));
  min-width: 15em;
  border: 1px solid #7ccafd;
  -o-object-fit: contain;
     object-fit: contain;
}

.project-card footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: bold;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.render-card img {
  width: 13em;
}

.example-card > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.example-card .example {
  padding: 1em;
  background-color: #252525;
  border-radius: 1em;
}

.example-card .codeblock {
  max-width: 100%;
}

.example-card .codeblock-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

.example-card .codeblock-wrapper > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.codeblock .title {
  padding: .5em;
  background-color: black;
}

.codeblock .code {
  background-color: #252525;
  color: #d6d6d6;
  padding: .5em;
  border: 2px dashed black;
  border-top: none;
}

.flex-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-h.gap-1em {
  gap: 1em;
}

.flex-h.stretch > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-h.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-h.wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex-v {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.flex-v.stretch > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-v.gap-1em {
  gap: 1em;
}

.flex-v.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-v.wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.tooltip {
  padding: .2em .5em;
  border-radius: 3px;
  background-color: black;
  z-index: 999;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
}

@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
  }
}

@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-35deg);
            transform: rotate(-35deg);
  }
}

@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
}

@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
}

.rotate1 {
  -webkit-animation: 300s rotate1 1;
          animation: 300s rotate1 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.rotate2 {
  -webkit-animation: 300s rotate2 1;
          animation: 300s rotate2 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.shake, .shake-on-hover:hover {
  -webkit-animation: .15s shake infinite;
          animation: .15s shake infinite;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #754180;
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  background-color: #252525;
}

.modal.fullscreen-image > * {
  height: unset;
}

.modal.fullscreen-image img {
  width: 100%;
}

.modal button {
  margin: 1em;
}

.modal .content-holder {
  height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1em;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}

.modal .content h2 {
  margin-bottom: 0px;
}

.modal .content .text-holder {
  height: 100%;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}

.modal .content .text-holder *[role=skill-list] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1em;
  margin-bottom: .5em;
}

.modal .content .text-holder .detail-text {
  padding-right: 1em;
  overflow-y: auto;
}

.modal .content .screenshot-holder {
  height: 100%;
  width: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .5em;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal .content .screenshot-holder > img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 4em;
}

.modal .content .screenshot-holder > img:first-child {
  width: 100%;
}

.modal-fullscreen-image {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000be;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-fullscreen-image > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1em;
}

.modal-fullscreen-image img {
  max-height: 90vh;
  max-width: 90vw;
}

button {
  padding: .5em;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #2F2F2F;
}

.exception * {
  color: red;
}

.exception .title {
  font-weight: bold;
}

body {
  width: 100vw;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #252525;
}

.a-like {
  text-decoration: underline;
  cursor: pointer;
}

p {
  line-height: 1.5;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

h1 {
  padding: .4em;
  font-size: 18pt;
  color: #e2e1e1;
  background-color: #754180;
  border-bottom: 2px solid black;
}

h2 {
  font-size: 14pt;
  margin-bottom: 1rem;
  border-bottom: 1px solid #7ccafd;
}

h3 {
  margin-bottom: .5rem;
}

pre {
  overflow-x: scroll;
}

section {
  -webkit-box-shadow: 5px 5px 50px black;
          box-shadow: 5px 5px 50px black;
}

section > div {
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  gap: 1em;
}

section > div > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content-wrapper {
  width: calc(min(90vw, 850px));
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.skill-icon {
  border-radius: 7px;
}

.skill-icon:hover {
  font-size: 200%;
}

h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

h1 .comment {
  margin-right: 1em;
  font-size: 70%;
  color: #08e600;
  font-style: italic;
}

h1 .comment::before {
  content: "// ";
}
/*# sourceMappingURL=style.css.map */