:root {
  --trail-length: disappear 3s;
  --accent-colour-a: #892be280;
  --accent-colour-b: white;
  --blur-amount: blur(25px);
}

* {
  color: #f0f8ff;
  margin: 0;
  padding: 0;
  font-family: system-ui;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

canvas, nav, .nav-buttons-container, .hamburger-menum, .section {
  touch-action: none;
}

.nav-button {
  cursor: pointer;
  display: flex;
}

body {
  background-color: #000;
}

label {
  padding-top: 10px;
  display: block;
}

input, textarea {
  background-color: #1a1a1a59;
  border: 1px solid gray;
  border-radius: 5px;
  width: 30vw;
  height: 30px;
  padding: 10px;
}

textarea:focus, input:focus {
  background-color: #96969659;
  box-shadow: inset 0 0 5px #000;
}

textarea {
  height: 100px;
}

input:autofill {
  background-color: #53535359 !important;
}

svg {
  fill: #fff;
}

.form-input {
  padding-left: 35px;
}

#submit {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

button, #submit {
  cursor: pointer;
  backdrop-filter: blur(5px);
  background-color: #892be280;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 130px;
  height: 35px;
}

button:hover, #submit:hover {
  background-color: #892be240;
  border: 1px solid #9a2fff;
  transform: scale(1.1);
  box-shadow: 0 0 20px #e22bd9;
}

nav {
  background-image: linear-gradient(to right, #00000080, #0000);
  flex-direction: column;
  width: 265px;
  height: 100vh;
  padding: 15px;
  display: flex;
  position: fixed;
  transform: rotateY(0);
}

.hamburger-menu {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
}

.hamburger-menu-line {
  background-color: #fff;
  width: 35px;
  height: 2px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.change .bar1 {
  transform: translate(0, 10px)rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -10px)rotate(45deg);
}

#nav-buttons-container {
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

nav a {
  vertical-align: middle;
  color: #fff;
  width: 200px;
  height: 40px;
  margin-top: 10px;
  padding-left: 20px;
  line-height: 40px;
}

nav a:hover, nav a:focus {
  text-shadow: 1px 1px 2px #90f, 0 0 1em #ae00ff, 0 0 .2em #ff00d4;
  color: #fff;
  backdrop-filter: blur(5px);
  background-color: #4b4b4b4d;
  border-left: 2px solid #f700ff;
  border-radius: 0% 10px 10px 0%;
  transform: scale(1.1);
}

nav a:focus {
  background-image: linear-gradient(-270deg, #0400ff33, #f700ff33);
}

.nav-link-icon {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: -30px;
  transform: rotate(90deg);
}

.nav-link-icon, .nav-icon {
  align-self: center;
  width: 25px;
  height: 25px;
}

.nav-icon {
  padding-right: 15px;
}

h1 {
  font-size: 30pt;
}

nav a:hover > img, nav a:focus > img {
  opacity: 1;
  right: 10px;
}

footer {
  width: 99vw;
  display: flex;
  position: fixed;
  bottom: 1vh;
}

footer p {
  flex: 1;
  margin-left: 1vw;
  padding-top: 15px;
}

footer p > a {
  font-weight: bolder;
}

footer p > a:hover {
  text-decoration: underline;
}

.social-links {
  justify-content: end;
  align-items: center;
  display: flex;
}

footer a {
  padding-left: 3px;
  padding-right: 3px;
}

a > svg {
  opacity: .7;
  border: 1px solid #fff;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 10px;
}

a > svg:hover {
  opacity: 1;
  background-color: #53034d;
  border: 1px solid #f700ff;
  transform: scale(1.3);
  box-shadow: 0 0 20px #f700ff;
}

a > svg path {
  fill: #fff;
  stroke: #f0f8ff;
}

a > svg:hover path {
  fill: #fff;
  stroke: #90f;
  transform: rotate(360deg);
}

.content {
  pointer-events: none;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
}

#title {
  flex: 1;
  height: fit-content;
  position: fixed;
  top: 10px;
  left: 10px;
}

.section {
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: all;
  max-width: 65vw;
  max-height: 95vh;
  transform: perspective(1000px) rotateY(var(--rotateY)) rotateX(var(--rotateX));
  border: 1px solid #9a9a9a40;
  border-color: #d8d8d880 #9a9a9a40 #9a9a9a40 #d8d8d880;
  border-radius: 10px;
  justify-content: center;
  padding: 10px;
  transition-property: width, height, scale, padding, border-radius, background-color, color, backdrop-filter, border, box-shadow;
  position: fixed;
  scale: 0;
  box-shadow: inset 10px 10px 60px #6464644d;
}

.section:before {
  content: "";
  backdrop-filter: blur(3px);
  filter: url("#glass-distortion");
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.section:after {
  content: "";
  backdrop-filter: blur(5px);
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.section > * {
  transform: translateZ(75px);
}

.section-header {
  width: 100%;
  height: fit-content;
  display: flex;
}

.section-title {
  flex: 99;
  font-size: 20pt;
  display: inline-block;
}

.section-container {
  width: inherit;
  max-height: 70vh;
  display: flex;
  position: relative;
}

#about-modal > .section-container {
  overflow-y: auto;
}

#portfolio-modal > .section-container {
  user-select: none;
  cursor: grab;
  overflow-x: scroll;
}

#portfolio-modal > .section-container:active {
  cursor: grabbing;
}

#profile-picture {
  border-radius: 20px;
  max-width: 81vw;
  height: auto;
  padding: 10px;
}

.section-container p {
  padding: 10px;
  font-size: 12pt;
  line-height: 25pt;
}

.close {
  background-color: #fff3;
  border: none;
  border-radius: 5px;
  outline: none;
  justify-content: center;
  align-items: baseline;
  width: 40px;
  height: 40px;
  font-size: 20pt;
  display: flex;
}

.close:hover {
  box-shadow: none;
  background-color: #ff000080;
  border: none;
  transform: scale(1.1);
  box-shadow: 0 0 50px 10px #ff000080;
}

.standard-button {
  pointer-events: all;
  cursor: pointer;
  background-color: #cc07bc80;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 250px;
  height: 40px;
}

#about-contact {
  margin: 0 auto;
  display: block;
}

.portfolio-section {
  cursor: pointer;
  text-align: left;
  background-color: #4c00ff33;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  padding-left: 20px;
}

.portfolio-content {
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

#card-deck {
  transform-style: preserve-3d;
  width: inherit;
  display: inline-flex;
}

#card-deck.active {
  cursor: grabbing;
}

.trail {
  mix-blend-mode: screen;
  width: 20px;
  height: 20px;
  animation: var(--trail-length);
  mix-blend-mode: lighten;
  border: 1px solid #fff;
  position: fixed;
  box-shadow: 0 0 20px 5px #70f;
}

@keyframes disappear {
  0% {
    opacity: 1;
    transform: scale(1.05)translateY(0)rotate(0);
  }

  100% {
    opacity: 0;
    transform: scale(0)translateY(150px)rotate(720deg);
  }
}

.portfolio-card-holder {
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 500px;
  display: inline-flex;
}

.portfolio-card-holder:hover > .portfolio-card-background {
  transform: scale(1);
}

.portfolio-card-holder:hover > .portfolio-card-content {
  transform: scale(1.1);
}

.portfolio-card-holder:hover .portfolio-description {
  display: block;
}

#message-icon {
  margin-top: -180px;
}

.portfolio-card-background {
  background-color: #3912d64d;
  border-radius: 10px;
  width: 320px;
  height: 480px;
  animation: 3s infinite sideButtons;
  transform: scale(1, 0);
}

.portfolio-card-content {
  width: 240px;
  height: 340px;
  position: absolute;
  top: 60px;
}

.portfolio-title {
  backdrop-filter: blur(5px);
  text-shadow: 2px 2px 4px #000;
  text-align: center;
  background-color: #5e5e5e4d;
  border-radius: 5px;
  width: fit-content;
  margin: 0 auto;
  padding: 5px;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
}

.portfolio-card-thumbnail {
  width: inherit;
  height: inherit;
  object-fit: cover;
  user-drag: none;
  -webkit-user-drag: none;
  border-radius: 10px;
  box-shadow: 0 0 50px #000;
}

.portfolio-side-buttons {
  width: 30px;
  height: 60px;
  position: absolute;
  top: 30px;
  right: -15px;
}

.portfolio-side-button {
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: #5f5f5f4d;
  border: none;
  border-radius: 30px;
  outline: none;
  width: 30px;
  height: 30px;
  margin-top: 5px;
  line-height: 7px;
}

.portfolio-side-button:hover {
  width: 30px;
  height: 30px;
  box-shadow: none;
  border: 1px solid #8b8b8b;
  transform: scale(1.3);
}

.portfolio-side-button > svg {
  width: 17px;
  height: 17px;
}

.portfolio-description {
  width: inherit;
  backdrop-filter: blur(25px);
  background-color: #00000080;
  border-radius: 0 0 10px 10px;
  height: 70px;
  font-size: medium;
  line-height: normal;
  display: none;
  position: absolute;
  bottom: 0;
}

.portfolio-description > p {
  font-size: medium;
  line-height: normal;
}

.portfolio-button {
  margin: 0 auto;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
}

@keyframes sideButtons {
  0% {
    background-color: #d612124d;
  }

  20% {
    background-color: #d6eb144d;
  }

  40% {
    background-color: #14eb1f4d;
  }

  60% {
    background-color: #12cfd64d;
  }

  80% {
    background-color: #2612d64d;
  }

  100% {
    background-color: #c612d64d;
  }
}

.portfolio-item-opened {
  pointer-events: all;
  backdrop-filter: blur(25px);
  opacity: 0;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: all 2s;
  display: none;
  position: fixed;
  overflow: auto;
}

.portfolio-item-head {
  justify-content: end;
  width: 99vw;
  padding-top: 1vh;
  display: flex;
}

.close-portfolio-piece {
  position: fixed;
}

.portfolio-images-holder {
  max-width: 100vw;
  max-height: 60vh;
}

.portfolio-images-holder > img {
  max-width: inherit;
  max-height: inherit;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 50px #000;
}

.portfolio-opened-content {
  width: 70vw;
  padding: 30px;
  font-size: larger;
  line-height: 20pt;
}

.portfolio-links {
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100vw;
  height: 70px;
  display: flex;
}

.portfolio-images-buttons {
  position: fixed;
}

.see-portfolio-item {
  border-radius: 50px;
  width: 50px;
  height: 50px;
}

.contact-form {
  justify-content: center;
  width: 100%;
  display: block;
}

#contact-form-section, #portfolio-section-container {
  max-height: inherit;
}

#contact-form {
  padding-right: 25px;
}

#contact-form > label {
  margin-left: 30px;
}

form svg {
  vertical-align: middle;
  width: 25px;
  height: 25px;
  position: relative;
  left: 35px;
}

.contact-social {
  height: fit-content;
  padding: 15px;
  bottom: 0;
}

#button-centrer {
  width: 100%;
  margin-left: 10px;
}

.contact-social > .social-links > a {
  padding: 3px;
  position: relative;
}

.contact-social > .social-links {
  justify-content: center;
}

.slider-background {
  width: inherit;
  background-color: #fff3;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  display: flex;
}

.slider-background > label {
  padding-left: 10px;
  padding-right: 10px;
}

input[type="range"] {
  vertical-align: middle;
  appearance: none;
  background-color: #ffffff80;
  border: none;
  border-radius: 10px;
  height: 25px;
  outline: none !important;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]:hover {
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  outline: none;
  width: 9px;
  height: 45px;
}

input[type="range"]::-moz-range-thumb {
  cursor: pointer;
  background: #f1f9f4;
  border: none;
  border-radius: 3px;
  outline: none;
  width: 18px;
  height: 18px;
}

input[type="range"]::-moz-range-progress {
  background-color: #fff;
  border: none;
  border-radius: 30px;
  height: 100%;
}

input[type="range"]::-moz-range-track {
  background-color: #ccc;
  border: none;
  border-radius: 30px;
  height: 100%;
}

input[type="range"]::-ms-fill-lower {
  background-color: #fff;
  border: none;
  border-radius: 30px;
  height: 100%;
}

input[type="range"]::-ms-fill-upper {
  background-color: #ccc;
  border: none;
  border-radius: 30px;
  height: 100%;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  padding: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f133;
  border-radius: 100px;
  width: 95%;
}

::-webkit-scrollbar-thumb {
  background: #a5a5a5b3;
  border-radius: 100px;
  height: 95%;
}

::-webkit-scrollbar-thumb:hover {
  background: #cecece;
}

#settings-modal input[type="number"] {
  width: 25px;
  height: 25px;
  vertical-align: inherit;
}

#construction-disclaimer {
  backdrop-filter: blur(5px);
  background-color: #ffe6061a;
  border: 1px solid #ffe606;
  border-radius: 5px;
  padding: 7px;
  position: fixed;
  top: 15px;
  right: 10px;
}

#submitting-modal {
  z-index: 2;
  pointer-events: all;
  background-color: #000000b3;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
}

#submitting-container {
  background-color: #5f5f5f80;
  border: 1px solid #5f5f5f;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  display: flex;
}

.portfolio-opened-content {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.portfolio-opened-content > * {
  padding: 5px;
}

#submitting-container > button {
  margin-top: 20px;
}

@media screen and (width <= 600px) {
  .hamburger-menu {
    display: block;
  }

  input, textarea {
    width: calc(82% - 35px);
  }

  .section {
    width: 90vw;
    max-width: 100vw;
    height: fit-content;
    max-height: 80vh;
  }

  h1 {
    font-size: 20pt;
  }

  input, textarea {
    height: 25px;
  }

  textarea {
    height: 90px;
  }

  #title {
    text-align: center;
    flex: 1;
    width: 100%;
    height: fit-content;
    display: block;
    top: 90%;
  }

  nav {
    flex-direction: column;
    display: none;
    transform: rotateY(0);
  }

  #nav-buttons-container {
    top: 0%;
    transform: translateY(40%);
  }

  footer {
    justify-content: center;
    display: block;
  }

  footer p {
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .social-links {
    justify-content: center;
    width: 100vw;
    display: none;
  }

  .contact-social > .social-links {
    width: auto;
    display: flex;
  }

  #portfolio-modal, #portfolio-modal > .section-container {
    height: 100%;
  }

  #about-modal > .section-container {
    display: block;
  }

  #about-modal > p {
    overflow-y: hidden;
  }

  #about-modal img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  input[type="range"] {
    width: 70vw;
  }

  #card-deck {
    width: 100%;
    transform-style: preserve-3d;
    display: block;
  }

  .portfolio-card-holder {
    display: flex;
    transform: scale(1);
  }

  #portfolio-modal > .section-container {
    overflow-x: hidden;
  }

  .portfolio-card-content {
    top: 55px;
  }

  .portfolio-card-holder {
    height: 445px;
  }

  .portfolio-description {
    display: block;
  }

  #portfolio-section-container {
    max-height: 75vh;
  }
}
/*# sourceMappingURL=public.c180ac0f.css.map */
