body {
  --body-bg: #00000000;
  --nav-background: #ffffff;
  --intro-background: #5f5f5f00;
  --tech-background: #ffffff00;
  --tech-card-background: #ffffff06;
  --tech-container-background: #00000000;
  --tech-progress-bar-gutter: #4141413b;
  --creations-background: #66666600;
  --creations-project-background: #c7c7c715;
  --contact-me-background: #00000000;
  --submit-button-inactive: #00000000;
  --input-box-color: #dfdfdf09;
  --footer-background: #49494909;
}

.darkbody {
  --cursor-color: white;
  --para-color: #c5c5c5;
  --submit-button-text: #c5c5c5;
  --input-label-color: #c5c5c5;
  --footer-text: #c5c5c5;
}

.lightbody {
  --cursor-color: rgb(0, 0, 0);
  --para-color: #000000;
  --submit-button-text: #000000;
  --input-label-color: #030303;
  --footer-text: #000000;
}

h1,
h2 {
  transition: color 1s ease;
  background: linear-gradient(to right, #a51e1e, #3b59f5);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

* {
  color: var(--para-color);
  --theme-transition: 1.5s;
  transition: color var(--theme-transition) ease;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
  font-family: monospace;
  scroll-behavior: smooth;
}

p {
  color: var(--para-color);
  transition: color 1s ease-in-out;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  scrollbar-width: none;
  /* Firefox */
}

.ch1 {
  --charactersn: 1;
  --characters: 1ch;
}

.ch2 {
  --charactersn: 2;
  --characters: 2ch;
}

.ch3 {
  --charactersn: 3;
  --characters: 3ch;
}

.ch4 {
  --charactersn: 4;
  --characters: 4ch;
}

.ch5 {
  --charactersn: 5;
  --characters: 5ch;
}

.ch6 {
  --charactersn: 6;
  --characters: 6ch;
}

.ch7 {
  --charactersn: 7;
  --characters: 7ch;
}

.ch8 {
  --charactersn: 8;
  --characters: 8ch;
}

.ch9 {
  --charactersn: 9;
  --characters: 9ch;
}

.ch10 {
  --charactersn: 10;
  --characters: 10ch;
}

body {
  z-index: 1000;
  font-size: 2rem;
  display: flex;
  flex-flow: column;
}
body img {
  width: 2em;
  height: 2em;
}
body nav {
  left: 0;
  right: 0;
  position: fixed;
  background-color: var(--nav-background);
  z-index: 1;
  font-size: 0.5em;
  padding: 0.5rem 1rem 0.5rem 1rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 4rem;
  align-self: center;
  justify-self: center;
  transition: background-color 2s ease-in-out;
  overflow: hidden;
}
body nav * {
  z-index: 100;
}
body nav .themefilter {
  z-index: 50;
  position: absolute;
  right: 0;
  top: 0;
}
body nav #button {
  align-self: center;
  display: none;
}
body nav #themeswitcher {
  padding-left: 1rem;
  grid-row: 1/2;
  grid-column: 3/4;
  font-size: 1.6rem;
  background-color: transparent !important;
  background: linear-gradient(to right, #0084ff, #ff01ff);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
body nav h1 {
  align-self: center;
  justify-self: flex-start !important;
  font-size: 2em;
}
body nav #navlinks {
  grid-row: 1/2;
  grid-column: 2/3;
  display: flex;
  height: inherit;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}
body nav #navlinks a {
  text-decoration: none;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
body section {
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
}
body #themeswitcher {
  background-color: rgba(255, 255, 255, 0.176);
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .themefilter {
  background-color: black;
  z-index: -1000;
  overflow: hidden;
  box-sizing: border-box;
  height: 0rem;
  width: 0rem;
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 50%;
  transition: 2s ease;
}
body .themefilteranim {
  height: 3rem !important;
  width: 3rem !important;
  transform: scale(150);
  background-color: #000 !important;
}
body #head {
  position: relative;
  background-color: var(--body-bg);
  height: 100vh;
  grid-template-rows: 2fr 0.5fr 1fr 2fr 1fr;
}
body #head .emoji {
  line-height: 2;
  font-size: 1.5em;
}
body #head .cursor {
  -webkit-animation: typing 1s steps(var(--charactersn)) 1 forwards, cursor-blink 1s linear 1s 1, typing2 1s steps(var(--charactersn)) 2s 1 forwards, cursor-blink2 1s linear 3s 1;
          animation: typing 1s steps(var(--charactersn)) 1 forwards, cursor-blink 1s linear 1s 1, typing2 1s steps(var(--charactersn)) 2s 1 forwards, cursor-blink2 1s linear 3s 1;
}
body #head #greet {
  width: var(--charactersn);
  position: relative;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.3em;
}
body #head h2 {
  font-size: 1.2em;
  opacity: 0;
  transform: translateY(10vw);
  -webkit-animation: fade-in 1s 2s ease forwards;
          animation: fade-in 1s 2s ease forwards;
}
body #head p {
  font-size: 0.4em;
  z-index: 0;
}
body #head img {
  -webkit-animation: downarrow 1s ease-out 0s infinite alternate;
          animation: downarrow 1s ease-out 0s infinite alternate;
}
body #intro {
  border-bottom: 2px solid #ff00ff;
  border-top: 2px solid #ff00ff;
  line-height: 3;
  text-align: center;
  background-color: var(--intro-background);
  grid-template-rows: 1fr 1fr 1fr 1fr;
  height: 100vh;
}
body #intro h1 {
  font-size: 0.6em;
}
body #intro p {
  font-size: 0.6em;
}
body #intro .emoji {
  font-size: 1.5em;
}
body #intro img {
  -webkit-animation: downarrow 1s ease-out 0s infinite alternate;
          animation: downarrow 1s ease-out 0s infinite alternate;
}
body #tech {
  padding: 5rem 0rem 2rem 0rem;
  gap: 3rem;
  background-color: var(--tech-background);
}
body #tech h1 {
  font-size: 1em;
}
body #tech h2 {
  font-size: 0.7em;
}
body #tech .tech-card {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  padding: 2rem 0rem 2rem 0rem;
  max-width: 30em;
  width: 90vw;
  background-color: var(--tech-card-background);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.37);
  -webkit-animation: strobe 5s ease 0s infinite alternate;
          animation: strobe 5s ease 0s infinite alternate;
}
body #tech .tech-card .tech-cont {
  align-self: center;
  justify-self: center;
  width: 95%;
  border: 1px solid rgba(95, 95, 95, 0.267);
  background-color: var(--tech-container-background);
  align-items: center;
  flex-flow: column;
  display: flex;
}
body #tech .tech-card .tech-cont p {
  font-size: 0.5em;
}
body #tech .tech-card .tech-cont p:first-child {
  font-size: 0.8em;
}
body #tech .tech-card .tech-cont p:first-child:after {
  align-self: flex-end;
}
body #tech .tech-card .tech-cont .progress {
  margin-top: 0.3em;
  grid-column: span 2;
  width: 100%;
  height: 1rem;
  background: var(--tech-progress-bar-gutter);
  overflow: hidden;
  width: 100%;
}
body #tech .tech-card .tech-cont .progress-bar {
  width: var(--its-width);
  height: 100%;
  display: flex;
  background: linear-gradient(90deg, #ff3d6d, #ea4aaa 17%, #e14bff 34%, #ff01aa 51%, #ff3d8e 68%, #ea4aaa 85%, #b34bff);
  background-size: 300% 100%;
  -webkit-animation: gradientstrobe linear 4s infinite forwards;
          animation: gradientstrobe linear 4s infinite forwards;
  transition: 1s;
}
body #creations {
  width: 100%;
  padding-top: 2em;
  padding-bottom: 1.2em;
  gap: 2em;
  align-items: center;
  justify-items: center;
  background-color: var(--creations-background);
}
body #creations img {
  width: 1em;
  height: 1em;
}
body #creations h2 {
  background: linear-gradient(to right, #ff01aa, #3b59f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.7em;
}
body #creations p {
  align-self: center;
  max-width: 80%;
  font-size: 0.56em;
}
body #creations h4 {
  transition: color var(--theme-transition) ease-in-out;
  font-size: 0.5em;
  color: var(--para-color);
}
body #creations .emoji {
  font-size: 3em;
}
body #creations .project-card {
  background-color: var(--creations-project-background);
  padding: 0.5em 0em 0.5em 0em;
  max-width: 30em;
  width: 95%;
  display: flex;
  flex-flow: column;
  gap: 1em;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.438);
}
body #creations .project-card .emojicont {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
body #creations .project-card .emojicont .emo1 {
  transform: rotate(20deg);
}
body #creations .project-card .emojicont .emo2 {
  transform: rotate(-20deg);
}
body #system-stats {
  text-align: left;
  gap: 3rem;
  border-top: 1px solid #ff01aa;
  padding-top: 1em;
}
body #system-stats img {
  width: 50%;
}
body #system-stats pre {
  overflow: hidden;
  width: 90vw;
  max-width: 58rem;
  border: 2px solid rgb(119, 0, 128);
  box-shadow: 0px 0px 30px -10px #ff01aa;
  padding: 1rem;
  font-size: min(2vw, 1.3rem);
}
body #system-stats pre * {
  display: inline-block;
}
body #system-stats pre .arch-logo {
  color: #0084ff;
  font-weight: 700;
}
body #system-stats pre .terminal-cursor {
  animation: terminalcursorblink 1s infinite reverse none;
}
body #system-stats pre .blue-point {
  color: #0084ff;
  font-weight: 700;
}
body #system-stats pre .green-point {
  color: rgb(247, 0, 255);
}
body #system-stats pre .terminal-command {
  color: rgb(255, 0, 183);
  text-decoration: underline;
}
@-webkit-keyframes terminalcursorblink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes terminalcursorblink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body #contact-me {
  background-color: var(--contact-me-background);
  width: 100%;
  margin-top: 4em;
  margin-bottom: 4em;
}
body #contact-me form {
  margin: 1rem auto 10rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 90vw;
  max-width: 20em;
}
body #contact-me input,
body #contact-me textarea {
  height: 2em;
  text-align: start;
  margin-bottom: 2em;
  padding: 0.3em;
  border: 2px solid #823eaa;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  background-color: var(--input-box-color);
}
body #contact-me input:focus,
body #contact-me textarea:focus {
  border: none;
  border: 2px solid #0084ff;
}
body #contact-me textarea {
  height: 6em;
}
body #contact-me label {
  transition: var(--theme-transition) ease;
  color: var(--input-label-color);
  font-size: 0.7em;
  align-self: flex-start;
}
body #contact-me p {
  font-size: min(4vw, 2rem);
}
body #contact-me button {
  margin-top: 0.2em;
  align-self: flex-end;
  font-size: 0.8em;
  color: white;
  background-color: transparent;
  color: var(--para-color);
  border-radius: 2rem;
  transition: 0.2s linear;
  padding: 0.1em 0.6em;
  border: none;
  border: 2px solid #8401ff;
}
body #contact-me button:hover {
  background-color: #8401ff;
}
body footer {
  display: grid;
  align-items: center;
  flex-flow: column;
  background-color: var(--footer-background);
  grid-template-columns: 1fr 1fr;
  padding: 1em 0em;
  font-size: 0.5em;
  row-gap: 0.4em;
  justify-items: center;
  align-items: center;
  text-align: center;
}
body footer p {
  grid-column: 1/-1;
}
body footer .links {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: left;
  margin-bottom: 3em;
  align-self: start;
  display: flex;
  flex-flow: column;
  gap: 0.5em;
}
body footer a {
  transition: var(--theme-transition) ease;
  color: var(--para-color);
  text-decoration: none;
}

@media (max-width: 600px) {
  nav {
    overflow: hidden;
  }
  nav #button {
    position: relative;
    display: initial !important;
    justify-self: end;
    justify-content: space-evenly;
    width: 2em;
    height: 3em;
    grid-column: 2/3;
    grid-row: 1/2;
  }
  nav #button :hover {
    cursor: pointer;
  }
  nav #button .stick {
    border-radius: 10px;
    background: linear-gradient(to right, #ff01aa, #0084ff);
    width: 100%;
    transition: 1s ease;
    position: absolute;
  }
  nav #navlinks {
    grid-row: 2/3 !important;
    transition: 1s ease;
    overflow: hidden;
    display: inline;
    flex-flow: column;
    grid-column: 1/4 !important;
  }
  nav .unexpanded-navlinks {
    height: 0px !important;
  }
  nav .expanded-navlinks {
    height: 13em !important;
  }
  nav .unexpanded-hamburger .stick {
    height: 2px;
  }
  nav .unexpanded-hamburger #stick1 {
    top: 33%;
  }
  nav .unexpanded-hamburger #stick2 {
    bottom: calc(50% - 2px);
  }
  nav .unexpanded-hamburger #stick3 {
    top: 66%;
  }
  nav .expanded-hamburger .stick {
    height: 3px;
  }
  nav .expanded-hamburger #stick1 {
    transform: rotate(45deg);
    top: 50%;
    bottom: 50%;
  }
  nav .expanded-hamburger #stick2 {
    bottom: calc(50% - 2px);
    opacity: 0;
  }
  nav .expanded-hamburger #stick3 {
    top: 50%;
    bottom: 50%;
    transform: rotate(-45deg);
  }
  .emo1 {
    display: none;
  }
  .emo2 {
    transform: rotate(0deg) !important;
  }
  footer {
    grid-template-columns: 1fr !important;
  }
  footer .links {
    align-items: flex-start;
    -moz-columns: 1/-1 !important;
         columns: 1/-1 !important;
  }
  footer p {
    align-self: flex-start;
  }
}
@-webkit-keyframes typing {
  from {
    width: 0px;
    border-right: 1px solid white;
  }
  to {
    width: var(--characters);
    border-right: 1px solid white;
  }
}
@keyframes typing {
  from {
    width: 0px;
    border-right: 1px solid white;
  }
  to {
    width: var(--characters);
    border-right: 1px solid white;
  }
}
@-webkit-keyframes typing2 {
  from {
    border-right: 1px solid white;
    width: var(--characters);
  }
  to {
    border-right: 1px solid white;
    width: 0px;
  }
}
@keyframes typing2 {
  from {
    border-right: 1px solid white;
    width: var(--characters);
  }
  to {
    border-right: 1px solid white;
    width: 0px;
  }
}
@-webkit-keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes downarrow {
  to {
    transform: translateY(20%);
  }
}
@keyframes downarrow {
  to {
    transform: translateY(20%);
  }
}
@-webkit-keyframes cursor-blink {
  from {
    border-right: 0;
  }
  to {
    border-right: 1px solid white;
  }
}
@keyframes cursor-blink {
  from {
    border-right: 0;
  }
  to {
    border-right: 1px solid white;
  }
}
@-webkit-keyframes cursor-blink2 {
  from {
    border-right: 0;
  }
  to {
    border-right: 1px solid white;
  }
}
@keyframes cursor-blink2 {
  from {
    border-right: 0;
  }
  to {
    border-right: 1px solid white;
  }
}
@-webkit-keyframes gradientstrobe {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}
@keyframes gradientstrobe {
  from {
    background-position: 0%;
  }
  to {
    background-position: 100%;
  }
}/*# sourceMappingURL=style.css.map */