@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CP.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCP.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCP.ttf) format('truetype');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCP.ttf) format('truetype');
}
@keyframes com-animation-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes com-animation-slidein-left {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes com-animation-slidein-top {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes com-animation-scalein {
  from {
    transform: scale(0.4);
  }
  to {
    transform: scale(1);
  }
}
@keyframes com-animation-marker {
  from {
    background: transparent;
    color: hsl(0, 0%, 10%);
    margin-right: 2em;
    padding-left: 0;
    padding-right: 0;
  }
  to {
    background: black;
    color: white;
    margin-right: 0;
    padding-left: 1em;
    padding-right: 1em;
  }
}
.com-accordion {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  border: 0;
}
.com-accordion-item {
  display: block;
  box-sizing: border-box;
  border: 1px solid hsl(0, 0%, 85%);
  transition: all 0.5s ease-out;
}
.com-accordion-item + .com-accordion-item {
  margin-top: -1px;
}
.com-accordion-item[open=true]:not(:first-of-type) {
  margin-top: 20px;
}
.com-accordion-item[open=true]:not(:last-of-type) {
  margin-bottom: 20px;
}
.com-accordion-item[open=true] > .com-accordion-item-header [chevron] {
  transform: rotateZ(90deg);
}
.com-accordion-item-header {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  user-select: none;
  cursor: pointer;
}
.com-accordion-item-header [chevron] {
  flex-shrink: 0;
  margin-right: 1rem;
  transition: transform 0.3s ease;
}
.com-accordion-item-header:hover {
  background: hsl(0, 0%, 98%);
}
.com-accordion-item-body {
  display: none;
  overflow: auto;
  padding: 1rem;
}
#com-alerts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  background: transparent;
  padding: 1rem;
  pointer-events: none;
  z-index: 20000;
}
#com-alerts .com-alert {
  animation: com-animation-slidein-top 1s ease, com-animation-fadein 0.5s linear;
  pointer-events: all;
  margin-bottom: 1rem;
}
.com-alert {
  position: relative;
  box-sizing: border-box;
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  color: hsl(0, 0%, 30%);
  background: white;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  display: flex;
}
.com-alert .com-alert-close {
  position: absolute;
  box-sizing: content-box;
  right: 0.5rem;
  top: 0.5rem;
  padding: 0.5rem;
  color: inherit;
  cursor: pointer;
}
.com-alert .com-alert-icon {
  width: 20px;
  height: 20px;
  margin: 2px 1rem 0 0;
}
.com-alert .com-alert-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Raleway', serif;
  font-weight: normal;
  font-size: 1.3rem;
}
.com-alert .com-alert-header + * {
  margin-top: 0.5rem;
}
.com-alert .com-alert-body {
  display: block;
}
.com-alert[type=info] {
  background: hsl(210, 50%, 60%);
  color: white;
}
.com-alert[type=success] {
  background: hsl(120, 35%, 50%);
  color: white;
}
.com-alert[type=warning] {
  background: hsl(25, 70%, 55%);
  color: white;
}
.com-alert[type=critical] {
  background: hsl(0, 40%, 55%);
  color: white;
}
.com-alert[type=black] {
  background: black;
  color: white;
}
.com-alert a {
  display: inline;
  text-decoration: underline;
  color: white;
  border: 0;
}
.com-article {
  animation: com-animation-fadein 0.4s ease;
  box-sizing: border-box;
  max-width: 1000px;
  margin: auto;
}
.com-article .com-article-header {
  margin-bottom: 2rem;
  text-align: center;
}
.com-article .com-article-header .com-article-title {
  margin: 0 0 2rem 0;
}
.com-article .com-article-header .com-article-subtitle {
  margin: 2rem 0 2rem 0;
  color: hsl(0, 0%, 50%);
}
.com-article .com-article-header .com-article-date {
  display: inline-block;
  font-size: 1.1rem;
  color: hsl(0, 0%, 50%);
}
.com-article .com-article-header .com-article-image {
  margin: 2rem auto;
  width: 100%;
}
.com-article .com-article-body {
  max-width: 800px;
  margin: auto;
}
.com-article h1,
.com-article h2,
.com-article h3,
.com-article h4 {
  margin: 2.5rem auto;
  text-align: center;
}
.com-article p,
.com-article ol,
.com-article ul {
  margin: 1.5rem auto;
  line-height: 1.5;
}
.com-blockquote {
  display: block;
  box-sizing: border-box;
  margin: 3rem auto;
  padding: 0 3rem;
  font-style: italic;
}
.com-blockquote .com-blockquote-body:before {
  content: "\201C";
  float: left;
  font-family: Arial, Verdana;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1rem;
  color: #78C0A8;
  transform: translate(-1rem, 0px);
}
.com-blockquote .com-blockquote-body p:first-of-type {
  margin-top: 0;
}
.com-blockquote .com-blockquote-body p:last-of-type {
  margin-bottom: 0;
}
.com-blockquote footer {
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
  text-align: center;
  border: 0;
  padding: 0;
}
.com-blockquote footer span + span:before,
.com-blockquote footer span + cite:before,
.com-blockquote footer cite + span:before {
  content: ", ";
}
.com-button {
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  vertical-align: middle;
  gap: 0.6em;
  min-height: 40px;
  padding: 4px 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  background: white;
  border-radius: 4px;
  border: 1px solid hsl(0, 0%, 85%);
  transition: all 0.3s ease;
  user-select: none;
  cursor: pointer;
}
.com-button:hover:not(:disabled) {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  border-color: hsl(204, 100%, 65%);
}
.com-button:focus:not(:disabled) {
  border-color: hsl(204, 100%, 65%);
  box-shadow: 0 0 0 0.25rem hsla(204, 100%, 90%, 0.8);
  outline: 0;
  z-index: 2;
}
.com-button:active:not(:disabled),
.com-button.active:not(:disabled) {
  background: linear-gradient(hsl(204, 100%, 60%), hsl(204, 100%, 65%));
  border-color: linear-gradient(hsl(204, 100%, 60%), hsl(204, 100%, 65%));
  color: white;
  transition: initial;
  z-index: 2;
  outline: 0;
}
.com-button:disabled {
  background: hsl(0, 0%, 97%);
  color: hsl(0, 0%, 60%);
  border-color: hsl(0, 0%, 85%);
  cursor: default;
  box-shadow: none;
}
.com-button[size=small] {
  min-height: 28px;
  padding: 2px 6px;
}
.com-button[size=large] {
  min-height: 60px;
  padding: 6px 20px;
  font-size: 1.2rem;
}
.com-button[primary] {
  border-color: hsl(0, 0%, 30%);
  background: hsl(0, 0%, 30%);
  color: white;
}
.com-button[text] {
  background: transparent;
  border-color: transparent;
  color: inherit;
}
.com-button[text]:hover,
.com-button[text]:focus {
  background: rgba(0, 0, 0, 0.1);
  border-color: transparent;
  box-shadow: none;
}
.com-button[text]:active,
.com-button[text].active {
  background: linear-gradient(hsl(204, 100%, 60%), hsl(204, 100%, 65%));
}
.com-button[round] {
  border-radius: 50%;
  border-color: transparent;
  background: transparent;
  height: 40px;
  width: 40px;
  justify-content: center;
  min-height: 0;
  padding: 4px;
}
.com-button[round] .com-icon {
  width: 100%;
  height: 100%;
}
.com-button[outline] {
  background: transparent;
  border-width: 1px;
}
.com-card {
  display: block;
  box-sizing: border-box;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  background: white;
  overflow: hidden;
}
.com-card .com-card-header {
  box-sizing: border-box;
  overflow: hidden;
}
.com-card .com-card-header .com-image {
  display: block;
  object-fit: cover;
  width: 100%;
}
.com-card .com-card-body {
  box-sizing: border-box;
  padding: 0.8rem;
}
.com-card .com-card-body > *:first-child {
  margin-top: 0;
}
.com-card .com-card-body > *:last-child {
  margin-bottom: 0;
}
.com-card .com-card-footer {
  box-sizing: border-box;
}
.com-codeblock {
  display: block;
  font-size: 13.5px;
}
.com-codeblock .com-codeblock-header {
  font-size: 13.5px;
  background: hsl(0, 0%, 30%);
  color: hsl(0, 0%, 80%);
  padding: 6px 1rem;
}
.com-codeblock .com-codeblock-body {
  border-radius: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}
.com-codeblock .com-codeblock-body code {
  padding: 0;
}
.com-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  align-items: stretch;
  justify-items: stretch;
  justify-content: stretch;
}
.com-dialog {
  display: block;
  box-sizing: border-box;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  pointer-events: all;
  background: white;
  max-width: 100%;
  width: auto;
}
.com-dialog .com-dialog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top-left-radius: 6.4px;
  border-top-right-radius: 6.4px;
  padding: 22px;
  font-weight: 400;
  font-size: 1.1em;
}
.com-dialog .com-dialog-header .com-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-right: 1rem;
}
.com-dialog .com-dialog-body {
  padding: 0 22px;
}
.com-dialog .com-dialog-body p:first-child {
  margin-top: 0;
}
.com-dialog .com-dialog-body p:last-child {
  margin-bottom: 0;
}
.com-dialog .com-dialog-footer {
  display: flex;
  justify-content: flex-end;
  padding: 22px;
  text-align: right;
}
.com-dialog .com-dialog-footer .com-button {
  margin-left: 1rem;
}
.com-dialog[type=confirm] .com-dialog-header {
  color: hsl(0, 0%, 50%);
}
.com-dialog[type=info] .com-dialog-header {
  color: hsl(210, 50%, 50%);
}
.com-dialog[type=success] .com-dialog-header {
  color: hsl(120, 35%, 40%);
}
.com-dialog[type=warning] .com-dialog-header {
  color: hsl(25, 70%, 45%);
}
.com-dialog[type=critical] .com-dialog-header {
  color: hsl(0, 40%, 45%);
}
.com-dialog[size=small] {
  width: 400px;
}
.com-dialog[size=medium] {
  width: 600px;
}
.com-dialog[size=large] {
  width: 900px;
}
.com-dialog[size=xlarge] {
  width: 1200px;
}
.com-error {
  animation: com-animation-fadein 0.4s ease;
  text-align: center;
  margin: 2rem auto;
  padding: 2rem;
  max-width: 600px;
}
.com-error h1 {
  font-size: 8rem;
  font-weight: 100;
  color: hsl(0, 0%, 60%);
  margin: 0 auto 2rem auto;
}
.com-error h2 {
  font-size: 2.5rem;
  margin: 0 auto 2rem auto;
}
.com-error p {
  margin: 0 auto 3rem auto;
  max-width: 400px;
}
.com-figure {
  display: block;
  box-sizing: border-box;
  margin: 3rem auto;
}
.com-figure .com-figure-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  background: hsl(0, 0%, 30%);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 0.5rem 0.5rem;
  color: white;
}
.com-figure .com-figure-body img,
.com-figure .com-figure-body video {
  margin: 0 auto;
}
.com-figure .com-figure-footer {
  font-style: italic;
  padding: 0.5rem 2rem;
}
.com-footer {
  display: block;
  box-sizing: border-box;
  border-top: 1px solid hsl(0, 0%, 85%);
  font-size: 13.5px;
  text-align: center;
  color: hsl(0, 0%, 40%);
  padding: 3rem;
  margin-top: 4rem;
  width: 100%;
}
.com-form {
  display: block;
  box-sizing: border-box;
  max-width: 700px;
  margin: 1rem auto;
}
.com-form .com-form-header {
  box-sizing: border-box;
}
.com-form .com-input,
.com-form .com-select,
.com-form .com-textarea {
  margin-bottom: 1rem;
}
.com-form label {
  display: block;
  box-sizing: border-box;
}
.com-form label[required=true]:after {
  content: "*";
  margin-left: 0.4em;
  color: red;
}
.com-form .com-form-footer {
  display: flex;
  box-sizing: border-box;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 1rem;
}
.com-icon {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
}
.com-image {
  display: block;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  margin: 0 auto;
}
@keyframes com-image-fadeincolor {
  0% {
    filter: grayscale(100%);
    opacity: 0;
  }
  70% {
    filter: grayscale(100%);
    opacity: 1;
  }
  100% {
    filter: grayscale(0%);
  }
}
.com-image.loaded[enter-effect=fadein] {
  animation: com-animation-fadein 1s ease;
}
.com-image.loaded[enter-effect=fadeincolor] {
  animation: com-image-fadeincolor 1.5s ease;
}
.com-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.com-input[type=text] input,
.com-input[type=number] input,
.com-input[type=email] input,
.com-input[type=date] input,
.com-input[type=time] input,
.com-input[type=tel] input {
  display: block;
  box-sizing: border-box;
  text-overflow: ellipsis;
  width: 100%;
}
.com-input[type=date],
.com-input[type=time] {
  width: 10em;
}
.com-input[type=checkbox] label,
.com-input[type=radio] label {
  display: inline-flex;
  align-items: center;
  height: 40px;
  gap: 0.5em;
}
.com-input[type=checkbox] input,
.com-input[type=radio] input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: auto;
  min-height: auto;
  padding: 0;
}
.com-input[type=checkbox] input:before,
.com-input[type=radio] input:before {
  content: "";
  display: block;
  text-align: center;
  box-sizing: border-box;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: translateY(-6px) rotateZ(50deg);
  transition: all 0.3s ease;
}
.com-input[type=checkbox] input:checked,
.com-input[type=radio] input:checked {
  border-color: hsl(204, 100%, 65%);
  background: hsl(204, 100%, 65%);
}
.com-input[type=checkbox] input:checked:before,
.com-input[type=radio] input:checked:before {
  transform: translateY(-2px) rotateZ(35deg);
}
.com-input[type=radio] input {
  border-radius: 50%;
}
.com-input[type=color] {
  display: flex;
}
.com-input[type=color] label {
  display: inline-flex;
  align-items: center;
  height: 40px;
  gap: 0.5em;
}
.com-input[type=color] input {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 2px 3px;
  background: white;
}
.com-input[type=range] input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  min-height: 8px;
  max-height: 8px;
  padding: 0;
  border: 1px solid hsl(0, 0%, 85%);
  background: hsl(0, 0%, 97%);
  border-radius: 4px;
  outline: none;
}
.com-input[type=range] input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 50%;
  cursor: pointer;
}
.com-input[type=range] input::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: white;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 50%;
  cursor: pointer;
}
.com-inputgroup {
  display: inline-flex;
  align-items: stretch;
  vertical-align: middle;
}
.com-inputgroup > * {
  margin-left: -1px;
  z-index: 1;
}
.com-inputgroup > *:focus,
.com-inputgroup > *:focus-within {
  z-index: 2;
}
.com-inputgroup > *:hover {
  z-index: 3;
}
.com-inputgroup > *:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.com-inputgroup > *:not(:first-child) input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.com-inputgroup > *:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.com-inputgroup > *:not(:last-child) input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.com-lightbox {
  animation: com-lightbox-enter 0.4s linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.9);
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  user-select: none;
  overflow: hidden;
  color: white;
}
@keyframes com-lightbox-enter {
  from {
    transform: rotateY(90deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
.com-lightbox.leave {
  transition: all 0.4s linear;
  transform: rotateY(90deg);
  opacity: 0;
}
.com-lightbox a {
  color: inherit;
}
.com-lightbox .com-lightbox-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.com-lightbox .com-lightbox-header.open {
  opacity: 1;
}
.com-lightbox .com-lightbox-header .slidenro {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
}
.com-lightbox .com-lightbox-header .buttons {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
}
.com-lightbox .com-lightbox-header .buttons .button {
  padding: 10px 14px;
}
.com-lightbox .com-lightbox-header .buttons .button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.com-lightbox .com-lightbox-body {
  max-width: 100%;
  max-height: 100%;
  user-select: none;
  overflow: hidden;
}
.com-lightbox .com-lightbox-body img {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.com-lightbox .com-lightbox-body .com-ligthtbox-caption {
  position: relative;
  box-sizing: border-box;
  padding: 10px 14px;
  margin: 0;
  max-width: 1200px;
  user-select: text;
  font-size: 0.9em;
  z-index: 3;
}
.com-lightbox .com-lightbox-body .next,
.com-lightbox .com-lightbox-body .prev {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 10%, 15vw);
  height: 100%;
  transition: all 0.2s linear;
  font-weight: bold;
  font-size: 80px;
  color: white;
  user-select: none;
  cursor: pointer;
  opacity: 0;
}
.com-lightbox .com-lightbox-body .next:hover,
.com-lightbox .com-lightbox-body .prev:hover {
  opacity: 1;
}
.com-lightbox .com-lightbox-body .prev {
  text-shadow: 1px 1px 8px #000000;
  top: 0;
  left: 0;
}
.com-lightbox .com-lightbox-body .next {
  text-shadow: -1px 1px 8px #000000;
  top: 0;
  right: 0;
}
.com-link {
  display: inline;
  word-spacing: normal;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  padding: 0;
  border: 0;
  border-bottom: 1px solid hsl(204, 100%, 85%);
  border-radius: 0;
  min-height: initial;
  background: transparent;
  color: hsl(204, 100%, 35%);
  text-decoration: none;
  transition: all 0.3s ease;
}
.com-link:hover,
.com-link:focus {
  color: hsl(204, 100%, 45%);
  border-color: hsl(204, 100%, 35%);
  box-shadow: none;
  outline: 0;
}
.com-link:active,
.com-link.active {
  color: hsl(204, 100%, 15%);
  border-color: hsl(204, 100%, 15%);
  background: transparent;
  transition: initial;
}
.com-link [disabled] {
  color: hsl(0, 0%, 60%);
  border-color: hsl(0, 0%, 60%);
  cursor: default;
}
.com-math {
  display: inline;
}
.com-math[block] {
  display: block;
  box-sizing: border-box;
  margin: 1rem auto;
  padding: 1rem;
  width: 100%;
  text-align: center;
}
.com-math[block] .mjx-chtml {
  display: inline-block;
  margin: 0 0.5rem;
}
.com-menu {
  display: inline-block;
  box-sizing: border-box;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 6px;
  background: white;
  overflow: hidden;
  padding: 4px 0;
}
.com-menu .com-menu-header {
  padding: 6px;
  border-bottom: 1px solid hsl(0, 0%, 85%);
}
.com-menu .com-menu-body {
  overflow-y: auto;
}
.com-menu-h {
  display: block;
  box-sizing: border-box;
  padding: 1.5rem 1rem 0.8rem 1rem;
  color: hsl(0, 0%, 60%);
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 600;
  cursor: default;
}
.com-option {
  all: unset;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  gap: 0.6em;
  border: 1px solid transparent;
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  border-radius: 0;
  width: 100%;
  position: relative;
  user-select: none;
}
.com-option:hover {
  border-color: transparent;
  background: hsl(0, 0%, 97%);
  color: hsl(0, 0%, 10%);
}
.com-option:focus {
  border-color: hsl(204, 100%, 65%);
  color: hsl(0, 0%, 10%);
}
.com-option.selected {
  background: hsl(204, 100%, 95%);
  color: hsl(204, 100%, 30%);
}
.com-option:active {
  background: linear-gradient(hsl(204, 100%, 60%), hsl(204, 100%, 65%));
  color: white;
}
.com-option:not(:disabled) {
  cursor: pointer;
}
.com-optgroup {
  display: block;
  box-sizing: border-box;
}
.com-optgroup .com-optgroup-button .com-icon {
  transform-origin: 50% 50% 0;
}
.com-optgroup .com-optgroup-button.opened .com-icon {
  transform: rotate(90deg);
}
.com-optgroup .com-optgroup-body .com-option {
  padding-left: 2rem;
}
#com-modals {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
}
#com-modals > * {
  pointer-events: all;
}
.com-modal {
  --position: fixed;
  --placeItems: start center;
  --background: rgba(0, 0, 0, 0.5);
  --animation: com-animation-slidein-top 0.4s ease-out;
  --padding: 10vh 2rem;
  animation: com-animation-fadein 0.3s ease;
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  place-items: var(--placeItems);
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  position: var(--position);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background: var(--background);
}
.com-modal .com-modal-body {
  display: block;
  box-sizing: border-box;
  animation: var(--animation);
  padding: var(--padding);
  max-width: 100%;
}
.com-msg {
  display: inline-block;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 2px 8px;
  color: hsl(0, 0%, 40%);
  margin: 4px 0;
}
.com-msg .com-msg-body {
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.4em;
}
.com-msg .com-msg-body > .com-icon {
  transform: translateY(0.14em);
}
.com-msg[type=info] {
  background: hsl(210, 50%, 95%);
  color: hsl(210, 50%, 50%);
}
.com-msg[type=success] {
  background: hsl(120, 35%, 90%);
  color: hsl(120, 35%, 40%);
}
.com-msg[type=warning] {
  background: hsl(25, 70%, 92%);
  color: hsl(25, 70%, 45%);
}
.com-msg[type=critical] {
  background: hsl(0, 40%, 95%);
  color: hsl(0, 40%, 45%);
}
.com-msg[text] {
  font-weight: 400;
  background: white;
  border: 0;
}
.com-msg[text][type=info] {
  color: hsl(210, 50%, 50%);
}
.com-msg[text][type=success] {
  color: hsl(120, 35%, 40%);
}
.com-msg[text][type=warning] {
  color: hsl(25, 70%, 45%);
}
.com-msg[text][type=critical] {
  color: hsl(0, 40%, 45%);
}
.com-msg[small] {
  font-size: 13.5px;
  padding: 2px 6px;
}
.com-navbar {
  position: relative;
  box-sizing: border-box;
  padding: 0.5rem;
  background: white;
  border-bottom: 1px solid hsl(0, 0%, 85%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  font-family: 'Raleway', serif;
}
.com-navbar[top] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
}
.com-navbar .com-navbar-body {
  display: flex;
  justify-content: space-between;
}
.com-navbar a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  border: 0;
  padding: 0.5rem 0.6rem;
  transition: all 0.3s ease;
  color: hsl(0, 0%, 10%);
}
.com-navbar a:hover {
  background: hsl(0, 0%, 85%);
}
.com-navbar a.router-link-exact-active {
  background: hsl(0, 0%, 50%);
  color: white;
}
.com-note {
  margin: 2.5rem 1.5rem;
  padding: 1rem;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 4px;
  border-left: 6px solid hsl(39, 100%, 50%);
}
.com-note .com-note-header {
  color: hsl(0, 0%, 50%);
  font-size: 13.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.com-parallax {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.com-parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-clip: border-box;
  background-size: cover;
}
.com-popper {
  display: block;
  box-sizing: border-box;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: transparent;
}
.com-popper[backdrop=true] {
  pointer-events: all;
}
.com-popper .com-popper-body {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  pointer-events: all;
}
.com-progressbar {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  background: linear-gradient(hsl(0, 0%, 90%), hsl(0, 0%, 98%));
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}
.com-progressbar .com-progressbar-body {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(hsl(210, 50%, 80%), hsl(210, 50%, 60%));
  transition: width 0.2s linear;
  height: 100%;
}
.com-progressbar .com-progressbar-label {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  vertical-align: middle;
  margin-left: 0.5rem;
  color: white;
  gap: 4px;
}
.com-search {
  display: block;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}
.com-search input {
  padding-right: 2.5rem;
  width: 100%;
}
.com-search .com-icon {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
  color: hsl(0, 0%, 70%);
}
.com-search .com-icon.search-icon {
  pointer-events: none;
}
.com-search .com-spinner {
  position: absolute;
  top: calc((40px - 20px)/2);
  right: 2.5rem;
}
.com-search:focus-within {
  z-index: 2;
}
.com-select {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
}
.com-select .com-select-trigger {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.com-select .com-select-button {
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 8px;
}
.com-select .com-select-button span {
  flex-grow: 1;
}
.com-select .com-select-button .com-icon[name=chevron-down] {
  width: 0.8rem;
  height: 0.8rem;
}
.com-select .com-select-clear {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 0.5rem;
  align-self: flex-end;
}
#com-spinners {
  position: fixed;
  z-index: 30000;
  pointer-events: none;
}
#com-spinners > * {
  pointer-events: all;
}
.com-spinner {
  animation: com-spinner-spin 2s linear infinite;
  --size: 120px;
  display: block;
  box-sizing: border-box;
  width: var(--size);
  height: var(--size);
  margin: auto;
  border-radius: 50%;
  border: 2px solid hsl(0, 0%, 90%);
  border-top-color: hsl(0, 0%, 30%);
}
@keyframes com-spinner-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.com-switch {
  display: inline-block;
  box-sizing: border-box;
  --width: 40px;
  --height: calc(var(--width) * 0.6);
}
.com-switch label {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 0.5em;
  margin: 0;
  cursor: pointer;
}
.com-switch input {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: calc(var(--width) * 0.4);
  background: white;
  min-height: auto;
  width: var(--width);
  height: var(--height);
  padding: 2px 0;
  cursor: pointer;
}
.com-switch input:before {
  content: "";
  transition: all 0.3s ease;
  display: block;
  width: calc(var(--width) * 0.4);
  height: calc(var(--width) * 0.4);
  border-radius: 50%;
  border: 0;
  transform: translateX(calc(var(--width) / 10));
  background: hsl(0, 0%, 85%);
}
.com-switch input:checked {
  background: hsl(204, 100%, 60%);
  border-color: hsl(204, 100%, 60%);
}
.com-switch input:checked:before {
  transform: translateX(calc(var(--width) * 0.475));
  background: white;
}
.com-table {
  box-sizing: border-box;
  border-collapse: collapse;
  width: 100%;
}
.com-table thead {
  background: transparent;
  background: hsl(0, 0%, 95%);
}
.com-table th,
.com-table td {
  vertical-align: top;
  text-align: left;
  border: 1px solid hsl(0, 0%, 85%);
  padding: 0.4rem 0.6rem;
}
.com-table th {
  font-weight: 600;
  color: hsl(0, 0%, 50%);
}
.com-table[striped] tr:nth-child(even) {
  background-color: hsl(0, 0%, 98%);
}
.com-tabs {
  display: flex;
  box-sizing: border-box;
  align-items: flex-start;
  gap: 2px;
  padding: 0 6px;
  border: 0;
  border-bottom: 1px solid hsl(0, 0%, 85%);
  outline: 0;
  margin: 0;
  width: 100%;
}
.com-tabs .com-tab {
  border-color: transparent;
  border-bottom-color: hsl(0, 0%, 85%);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: white;
  transform: translateY(1px);
}
.com-tabs .com-tab:hover {
  box-shadow: none;
}
.com-tabs .com-tab:focus {
  box-shadow: none;
}
.com-tabs .com-tab:active,
.com-tabs .com-tab.active {
  border: 1px solid hsl(0, 0%, 85%);
  border-bottom-color: transparent;
  background: white;
  color: hsl(0, 0%, 10%);
}
.com-textarea {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
}
.com-textarea textarea {
  display: block;
  box-sizing: border-box;
  max-height: 100%;
  height: 100%;
  width: 100%;
  resize: none;
}
.com-thumbs {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 640px;
}
.com-thumb {
  display: inline-block;
  box-sizing: border-box;
  opacity: 0;
  margin: 0;
  width: 200px;
  max-height: 140px;
  aspect-ratio: 200 / 140;
  object-fit: cover;
  background: white;
  cursor: pointer;
  padding: 8px;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@keyframes com-thumb {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.com-thumb.loaded {
  animation: com-thumb 1s ease;
  animation-fill-mode: forwards;
}
.com-thumb:hover {
  filter: brightness(110%) contrast(120%);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.3);
}
.com-video,
.com-youtubevideo {
  box-sizing: border-box;
  margin: 1.5rem auto;
  max-width: 100%;
}
:root ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
:root ::-webkit-scrollbar-track {
  background: hsl(0, 0%, 97%);
}
:root ::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
  border-radius: 10px;
}
:root ::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 80%);
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4 {
  font-family: 'Raleway', serif;
  font-weight: 300;
  margin: 0;
}
h1 {
  font-size: min(4rem, 10vw);
  font-weight: 100;
}
h2 {
  font-size: min(2.5rem, 7vw);
  font-weight: 200;
}
h3 {
  font-size: min(2rem, 5vw);
  font-weight: 300;
}
h4 {
  font-size: min(1.6rem, 4vw);
  font-weight: 300;
}
hr {
  border-top: 1px solid hsl(0, 0%, 85%);
  border-bottom: 0;
}
p {
  display: block;
  margin: 1em 0 1em 0;
}
a {
  display: inline;
  word-spacing: normal;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  padding: 0;
  border: 0;
  border-bottom: 1px solid hsl(204, 100%, 85%);
  border-radius: 0;
  min-height: initial;
  background: transparent;
  color: hsl(204, 100%, 35%);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: hsl(204, 100%, 45%);
  border-color: hsl(204, 100%, 35%);
  box-shadow: none;
  outline: 0;
}
a:active,
a.active {
  color: hsl(204, 100%, 15%);
  border-color: hsl(204, 100%, 15%);
  background: transparent;
  transition: initial;
}
a [disabled] {
  color: hsl(0, 0%, 60%);
  border-color: hsl(0, 0%, 60%);
  cursor: default;
}
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  min-height: 40px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  border: 1px solid hsl(0, 0%, 85%);
  border-radius: 4px;
  transition: all 0.2s ease;
  padding: 8px;
  margin: 0;
}
input:focus,
textarea:focus {
  border-color: hsl(204, 100%, 65%);
  box-shadow: 0 0 0 0.25rem hsla(204, 100%, 90%, 0.8);
  outline: none;
  z-index: 2;
}
input:hover:not(:disabled),
textarea:hover:not(:disabled) {
  border-color: hsl(204, 100%, 65%);
  z-index: 3;
}
input:active:not(:disabled),
textarea:active:not(:disabled),
input.active:not(:disabled),
textarea.active:not(:disabled) {
  border-color: hsl(204, 100%, 65%);
  z-index: 2;
}
input:disabled,
textarea:disabled {
  background: hsl(0, 0%, 97%);
  color: hsl(0, 0%, 60%);
  cursor: default;
}
b,
strong {
  font-weight: 600;
}
ul,
ol {
  box-sizing: border-box;
  padding: 0 3rem;
}
ul li + li,
ol li + li {
  margin-top: 0.4em;
}
em {
  font-style: italic;
  font-weight: 500;
  color: hsl(0, 0%, 40%);
}
code {
  font-family: monospace;
  background-color: hsl(0, 0%, 95%);
  padding: 0 5px;
}
q {
  font-style: italic;
}
mark {
  background: hsl(204, 100%, 90%);
  padding: 0 4px;
}
iframe,
video {
  display: block;
  margin: 0;
  border: 0;
}
.app-bubble {
  animation: float 1s ease alternate infinite;
  position: absolute;
  display: inline-block;
  padding: 16px;
  border-radius: 14px;
  user-select: none;
  cursor: default;
  color: hsl(0, 0%, 60%);
  background: white;
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.4);
    transform: translateY(0px);
  }
  100% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
  }
}
.app-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top-color: white;
  border-bottom: 0;
  border-right: 0;
  margin-bottom: -19px;
}
.app-cube {
  animation: com-animation-fadein 0.4s ease;
  user-select: none;
  box-sizing: border-box;
  margin: auto;
  width: 100%;
  --cubesize: 400px;
}
@keyframes spin {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
.app-cube .scene {
  animation: com-animation-fadein 1s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  height: calc(var(--cubesize) * 1.5);
  margin: auto;
  cursor: pointer;
  --multfactor: 1;
  --sizefactor: 2;
  --translateZ: calc(var(--cubesize)/var(--sizefactor) * var(--multfactor));
}
.app-cube .scene:hover {
  --sizefactor: 1.5;
}
.app-cube .scene:hover .cube .side {
  border-radius: 50%;
  opacity: 1;
}
.app-cube .scene.flipped {
  --multfactor: -1;
}
.app-cube .scene .cube {
  position: relative;
  animation: spin 15s infinite linear;
  width: var(--cubesize);
  height: var(--cubesize);
  transition: transform 0.5s ease-out;
  transform-style: preserve-3d;
}
.app-cube .scene .cube .side {
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: all 1s ease;
  overflow: hidden;
}
.app-cube .scene .cube .side img {
  width: 100%;
}
.app-cube .scene .cube .front {
  transform: rotateY(0deg) translateZ(var(--translateZ));
}
.app-cube .scene .cube .back {
  transform: rotateY(180deg) translateZ(var(--translateZ));
}
.app-cube .scene .cube .left {
  transform: rotateY(-90deg) translateZ(var(--translateZ));
}
.app-cube .scene .cube .right {
  transform: rotateY(90deg) translateZ(var(--translateZ));
}
.app-cube .scene .cube .top {
  transform: rotateX(90deg) translateZ(var(--translateZ));
}
.app-cube .scene .cube .bottom {
  transform: rotateX(-90deg) translateZ(var(--translateZ));
}
.app-footer {
  margin: 0;
}
.app-header {
  padding: 1rem 2rem;
}
.app-header .body {
  max-width: 1000px;
  margin: auto;
}
.app-header .links {
  display: flex;
  align-items: center;
  background: transparent;
}
@keyframes app-link-appear {
  from {
    transform: rotateY(-1080deg);
    opacity: 0;
  }
  to {
    transform: rotateY(0deg);
    opacity: 1;
  }
}
.app-header .links a {
  display: block;
  animation: app-link-appear 2s ease;
  animation-fill-mode: forwards;
  opacity: 0;
  margin-right: 0.3rem;
}
.app-header .links a:nth-of-type(1) {
  animation-delay: 0s;
}
.app-header .links a:nth-of-type(2) {
  animation-delay: 0.2s;
}
.app-header .links a:nth-of-type(3) {
  animation-delay: 0.4s;
}
.app-header .links a:nth-of-type(4) {
  animation-delay: 0.6s;
}
.app-header .links a:nth-of-type(5) {
  animation-delay: 0.8s;
}
.app-header .links a:nth-of-type(6) {
  animation-delay: 1s;
}
.app-main {
  min-height: 80vh;
}
.app-photostrip {
  display: block;
  box-sizing: border-box;
}
.app-photostrip .com-thumbs {
  grid-template-columns: repeat(6, 1fr);
  max-width: 100%;
  margin: 0 auto;
}
@keyframes app-photos-appear {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.app-photostrip .com-thumbs .com-thumb {
  animation: app-photos-appear 1s ease;
  animation-fill-mode: forwards;
  opacity: 0;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(1) {
  animation-delay: 0.2s !important;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(2) {
  animation-delay: 0.3s !important;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(3) {
  animation-delay: 0.4s !important;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(4) {
  animation-delay: 0.5s !important;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(5) {
  animation-delay: 0.6s !important;
}
.app-photostrip .com-thumbs .com-thumb:nth-of-type(6) {
  animation-delay: 0.8s !important;
}
@media all and (max-width: 800px) {
  .app-photostrip .com-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}
.app-profile {
  display: block;
  box-sizing: border-box;
  transform-style: preserve-3d;
  -moz-perspective: 1000px;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  max-width: 100%;
  overflow: hidden;
}
.app-profile .scene {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  transform-origin: 50% 100%;
  width: 100%;
  height: 100%;
}
.app-profile .scene .alt {
  display: block;
  box-sizing: border-box;
  animation: glitch 0.2s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(assets/profile/profile-pixel.png);
  background-size: 100%;
  mix-blend-mode: hard-light;
  opacity: 0;
}
@keyframes glitch {
  0% {
    background-position: 0 0;
    filter: hue-rotate(0deg);
  }
  10% {
    background-position: 5px 0;
  }
  20% {
    background-position: -5px 0;
  }
  30% {
    background-position: 15px 0;
  }
  40% {
    background-position: 5px 0;
  }
  50% {
    background-position: -25px 0;
  }
  60% {
    background-position: -50px 0;
  }
  70% {
    background-position: 0 -20px;
  }
  80% {
    background-position: -60px -20px;
  }
  81% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 0;
    filter: hue-rotate(360deg);
  }
}
.app-section {
  padding: 5rem 2rem;
}
.app-section:first-of-type {
  padding-top: 3rem;
}
.app-section .body,
.app-section form {
  max-width: 1000px;
  margin: auto;
}
.app-section h1 {
  text-transform: lowercase;
  font-size: min(6rem, 10vw);
  font-weight: bold;
  margin: 0 0 3rem 0;
}
.app-section h2,
.app-section h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 2rem 0;
}
.app-section h2 .com-icon,
.app-section h3 .com-icon {
  color: hsl(39, 100%, 50%);
}
.app-sectionpair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.app-sectionpair h2 {
  justify-content: center;
  text-align: center;
}
.app-sectionpair .pic {
  order: 2;
}
.app-sectionpair .pic img {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.3);
}
.app-sectionpair .info {
  order: 1;
}
@media (max-width: 800px) {
  .app-sectionpair {
    grid-template-columns: 1fr;
  }
  .app-sectionpair .pic {
    order: 2 !important;
  }
  .app-sectionpair .info {
    order: 1 !important;
  }
}
.app-terminal {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 6px solid black;
  background: black;
}
.app-terminal ::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
.app-terminal ::-webkit-scrollbar-track {
  background: transparent;
}
.app-terminal ::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0;
}
.app-terminal ::-webkit-scrollbar-thumb:hover {
  background: transparent;
}
.app-terminal .terminal {
  flex-grow: 1;
  flex-shrink: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 2rem;
  overflow: auto;
  font-family: monospace;
  font-size: 14px;
  text-align: left;
  color: white;
  text-shadow: 0 0 5px #ffff33;
  background-color: black;
  background-image: radial-gradient(rgba(51, 204, 51, 0.75), black 100%);
  transition: all 3s ease;
  opacity: 0;
  filter: brightness(400%);
}
.app-terminal .terminal.started {
  opacity: 1;
  filter: brightness(100%);
}
@keyframes pulse {
  0% {
    background: white;
    color: gray;
  }
  100% {
    background: transparent;
    color: white;
  }
}
.app-terminal .terminal .caret {
  animation: pulse 0.5s linear alternate infinite;
}
.app-terminal .terminal .caret:before {
  content: ' ';
  height: 1rem;
}
.app-terminal:after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 4px);
}
.app-view {
  animation: com-animation-fadein 1s ease;
}
.app-aboutsection {
  background-image: url(assets/print.png);
  background-repeat: repeat;
}
@keyframes fall {
  from {
    transform: translateY(-200px);
  }
  to {
    transform: translateY(0px);
  }
}
.app-aboutsection header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  gap: 2rem;
}
.app-aboutsection header .info {
  animation: fall 1s ease;
  max-width: 600px;
}
.app-aboutsection header .info h1 {
  margin: 0;
}
.app-aboutsection header .info h2 {
  font-size: min(1.7rem, 6vw);
  margin: 1.5rem 0;
}
.app-aboutsection header .image {
  align-self: end;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}
.app-aboutsection header .image img {
  width: 100%;
}
.app-aboutsection .app-photostrip {
  border-top: 1px solid hsl(0, 0%, 90%);
  padding-top: 2rem;
  z-index: 2;
}
.app-personalsection {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
}
.app-personalsection .app-cube {
  margin: 0 auto;
}
.app-personalsection h2 {
  justify-content: center;
  text-align: center;
}
.app-personalsection .app-bubble {
  left: -3rem;
  top: -2rem;
}
.app-personalsection .item {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 15px;
  background: hsl(0, 0%, 90%);
}
@media (max-width: 800px) {
  .app-personalsection .app-bubble {
    left: 0rem;
    top: -3rem;
  }
  .app-personalsection .app-cube {
    margin-top: 2rem;
  }
}
.aboutview .app-section:nth-child(even) {
  border-top: 1px solid hsl(0, 0%, 90%);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  background: hsl(0, 0%, 99%);
}
.aboutview .app-section:nth-child(even) .app-sectionpair .pic {
  order: 1;
}
.aboutview .app-section:nth-child(even) .app-sectionpair .info {
  order: 2;
}
.aboutview .app-section:nth-child(even):last-child {
  border-bottom: 0;
}
.aboutview .imgsection img {
  width: 100%;
  visibility: hidden;
}
.aboutview .imgsection img.loaded {
  visibility: visible;
}
.contactview h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contactview form .contact-info {
  margin: 1.5rem 0 2rem 0;
}
.contactview form .contact-info > div + div {
  margin-top: 0.7rem;
}
.projectsview .project-items {
  display: grid;
  box-sizing: border-box;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-template-rows: auto;
  gap: 1.5rem;
}
.projectsview .project-items a.project-item {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  color: hsl(0, 0%, 10%);
  border: 0;
  animation: com-animation-fadein 1s ease;
  animation-fill-mode: forwards;
  opacity: 0;
}
.projectsview .project-items a.project-item .com-card {
  width: 100%;
  height: 100%;
}
.projectsview .project-items a.project-item .com-card img {
  transition: all 0.3s ease;
  height: 200px;
  width: 100%;
}
.projectsview .project-items a.project-item .com-card:hover img {
  transform: scale(1.3);
}
.projectsview .project-items a.project-item .com-card .com-card-body {
  font-family: 'Raleway', serif;
  font-size: 1.1rem;
  font-weight: 300;
}
html {
  scroll-behavior: smooth;
}
