html,
body {
  min-width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #0c0019;
  color: #ebebd3;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

p {
  margin: 0;
  font-size: 20px;
}

h1 {
  padding: 6rem 0;
  margin: 0;
  font-size: clamp(1rem, 14vw, 6rem);
  font-weight: 900;
  color: #ee964b;
  text-align: center;
  scale: 1;
}

h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #ee964b;
  margin: 0 0 4rem 0;
}

#intro {
  width: 100vw;
  height: 100vh;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

#intro #scrollText {
  z-index: 10;
  position: absolute;
  color: #0c0019;
  font-weight: 700;
}

#intro #scrollText i {
  font-size: 3rem;
  margin-bottom: 2rem;
  --fa-animation-duration: 1.4s;
  --fa-bounce-rebound: 0;
}

#intro #introText p {
  padding: 0 1rem;
}

#intro #introText p:nth-child(2) {
  font-size: 2rem;
  font-weight: 700;
  color: #ee964b;
}

#intro #introText p:nth-child(3) {
  font-size: 2rem;
  font-weight: 700;
  color: #b46eff;
}

#intro .triangle {
  position: absolute;
}

#intro .triangle.left {
  bottom: 0;
  left: 0;
}

#intro .triangle.right {
  top: 0;
  right: 0;
}

#intro #leftTri1 {
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #7000e9), color-stop(50%, transparent));
  background: linear-gradient(to right top, #7000e9 50%, transparent 50%);
  width: 40%;
  height: 40%;
}

#intro #rightTri1 {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, #7000e9), color-stop(50%, transparent));
  background: linear-gradient(to left bottom, #7000e9 50%, transparent 50%);
  width: 40%;
  height: 40%;
}

#intro #leftTri2 {
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #8f28ff), color-stop(50%, transparent));
  background: linear-gradient(to right top, #8f28ff 50%, transparent 50%);
  width: 20%;
  height: 20%;
  z-index: 2;
}

#intro #rightTri2 {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, #8f28ff), color-stop(50%, transparent));
  background: linear-gradient(to left bottom, #8f28ff 50%, transparent 50%);
  width: 20%;
  height: 20%;
  z-index: 2;
}

#intro #leftTri3 {
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, #b46eff), color-stop(50%, transparent));
  background: linear-gradient(to right top, #b46eff 50%, transparent 50%);
  width: 0%;
  height: 0%;
  z-index: 3;
}

#intro #rightTri3 {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, #b46eff), color-stop(50%, transparent));
  background: linear-gradient(to left bottom, #b46eff 50%, transparent 50%);
  width: 0%;
  height: 0%;
  z-index: 3;
}

.seperator {
  width: 100%;
  background: #7000e9;
}

.seperator.main {
  height: 1rem;
}

.seperator.sub {
  height: 0.5rem;
  margin: 6rem 0 0 0;
}

nav {
  border-bottom: 0.25rem solid #ee964b;
  background: #0c0019;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin: 0;
  padding: 2rem 0;
}

nav ul li a {
  text-decoration: none;
  color: #ebebd3;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
  color: #ee964b;
}

nav ul li a.selected {
  color: #b46eff;
}

nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav #menuButton {
  display: none;
  font-size: 2rem;
  padding: 1rem 0;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 999999;
}

.outerContent {
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.innerContent {
  width: clamp(6rem, calc(100% - 8rem), 64rem);
}

.smallSection {
  width: 100%;
  padding: 12rem 0 0 0;
  display: inline-block;
}

.smallSection h2 ~ * {
  margin-left: 2rem;
}

.smallSection#projects {
  padding: 12rem 0 6rem 0;
}

.smallSection#contact {
  padding: 6rem 0;
}

#education {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

#education i {
  font-size: 2rem;
  color: #ee964b;
  margin-right: 2rem;
}

#education > div:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1rem 2rem;
  border-left: 0.25rem solid #ee964b;
  gap: 1rem 4rem;
}

#education > div:last-child h3 {
  color: #b46eff;
  margin: 0 0 0.5rem 0;
  font-size: 20px;
}

#skillsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

#skillsContainer p {
  max-width: 28rem;
}

#skillsContainer p span {
  color: #b46eff;
  font-weight: 700;
  cursor: pointer;
}

#skillsCloud {
  width: 18rem;
  aspect-ratio: 1;
}

#skillsCloud .skill {
  position: absolute;
  -webkit-transform-origin: center;
          transform-origin: center;
  color: #ebebd3;
  -webkit-transition: color, -webkit-filter 0.4s ease-in-out;
  transition: color, -webkit-filter 0.4s ease-in-out;
  transition: color, filter 0.4s ease-in-out;
  transition: color, filter 0.4s ease-in-out, -webkit-filter 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#skillsCloud .skill.selected {
  color: #b46eff;
  -webkit-filter: none !important;
          filter: none !important;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

#skillsCloud .skill i {
  font-size: 70px;
}

#skillsCloud .skill img {
  height: 4rem;
}

#skillsCloud.dimmed .skill {
  -webkit-filter: opacity(0.3);
          filter: opacity(0.3);
}

.project {
  width: 100%;
  margin-bottom: 6rem;
}

.project h3 {
  font-size: 2rem;
  font-weight: 900;
  margin: 2rem 0 1rem -3rem;
  z-index: 999;
  position: relative;
}

.project > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project > div > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.project > div > div:first-child .splide {
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 5rem 1rem #7000e9;
          box-shadow: 5rem 1rem #7000e9;
  max-width: 35rem;
  margin: 0 7rem 1rem 0;
}

.project > div > div:first-child .splide img {
  width: 100%;
}

.project > div > div:first-child > img {
  width: calc(100% - 7rem);
  border-radius: 1rem;
  -webkit-box-shadow: 5rem 1rem #7000e9;
          box-shadow: 5rem 1rem #7000e9;
  max-width: 35rem;
  margin: 0 7rem 1rem 0;
}

.project > div > div:last-child {
  width: 25rem;
}

.project > div > div:last-child p {
  margin-bottom: 1rem;
}

.project .projectBottom {
  margin-top: 1rem;
  gap: 2rem;
}

.project .projectList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.project .projectList .capsule {
  border: 1px solid #ebebd3;
  padding: 0.5rem 1rem;
  border-radius: 99rem;
  font-size: 1rem;
}

.project .projectList .projectButton {
  text-decoration: none;
  color: #7000e9;
  cursor: pointer;
}

.project .projectList .projectButton div {
  background: #ebebd3;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.project .projectList .projectButton div:hover {
  background: #7000e9;
  color: #ebebd3;
}

.project:last-child {
  margin-bottom: 12rem;
}

.splide__arrow {
  background: #7000e9;
  -webkit-transition: all 200ms;
  transition: all 200ms;
  width: 2.5em;
  height: 2.5em;
  -webkit-box-shadow: 0px 0px 4px 1px #0c0019;
          box-shadow: 0px 0px 4px 1px #0c0019;
}

.splide__arrow svg {
  fill: #ebebd3;
}

.splide__pagination__page {
  background: #0c0019;
}

.splide__pagination__page.is-active {
  background: #7000e9;
}

#contact {
  background: #7000e9;
}

#contact .innerContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}

#contact .innerContent > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#contact .innerContent > div:first-child > div {
  max-width: 25rem;
  width: 100%;
}

#contact .innerContent .contactCenter {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#contact .innerContent .contactCenter i {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

#contact .innerContent .contactCenter a {
  color: #ebebd3;
  font-weight: 700;
}

#contact .innerContent .contactCenter:nth-child(2) {
  margin-left: 2rem;
}

#contact .innerContent #contactStatusContainer {
  width: calc(100% - 2rem);
}

#contact .innerContent .hidden {
  display: none;
}

#contact h2 {
  color: #ebebd3;
  margin: 0 0 2rem 0;
}

#contact form {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

#contact form input,
#contact form textarea {
  width: calc(100% - 2rem);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #8f28ff;
  color: #ebebd3;
  resize: vertical;
  min-height: 1rem;
}

#contact form input::-webkit-input-placeholder,
#contact form textarea::-webkit-input-placeholder {
  color: #ebebd3;
}

#contact form input:-ms-input-placeholder,
#contact form textarea:-ms-input-placeholder {
  color: #ebebd3;
}

#contact form input::-ms-input-placeholder,
#contact form textarea::-ms-input-placeholder {
  color: #ebebd3;
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  color: #ebebd3;
}

#contact form input:focus,
#contact form textarea:focus {
  outline: none;
  background: #b46eff;
}

#contact form input[type="submit"],
#contact form textarea[type="submit"] {
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ebebd3;
  color: #7000e9;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

#contact form input[type="submit"]:hover,
#contact form textarea[type="submit"]:hover {
  background: #7000e9;
  color: #ebebd3;
}

footer p {
  font-size: 1rem;
  padding: 2rem 1rem;
  text-align: center;
}

footer p a {
  color: #b46eff;
}

.popupBack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(12, 0, 25, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popupBack .popupFront {
  position: relative;
  background: #ebebd3;
  color: #0c0019;
  padding: 2rem;
  width: clamp(6rem, calc(100% - 8rem), 40rem);
  border-radius: 0.5rem;
}

.popupBack .popupFront .popupClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.popupBack .popupFront h3 {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
}

.popupBack .popupFront .popupButton {
  text-decoration: none;
  color: #7000e9;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.popupBack .popupFront .popupButton div {
  background: #7000e9;
  color: #ebebd3;
  margin-top: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.popupBack .popupFront .popupButton div:hover {
  background: #0c0019;
  color: #ebebd3;
}

.popupBack.hidden {
  display: none;
}

@media screen and (max-width: 500px) {
  .innerContent {
    width: clamp(6rem, calc(100% - 4rem), 64rem);
  }
  .innerContent .contactCenter:nth-child(2) {
    margin-left: 0 !important;
  }
  .smallSection {
    padding: 6rem 0 0 0;
  }
  .smallSection#projects {
    padding: 6rem 0 3rem 0;
  }
  .smallSection#contact {
    padding: 3rem 0;
  }
  .smallSection h2 ~ * {
    margin-left: 0;
  }
  p {
    font-size: 1rem;
  }
  h1 {
    font-size: 14vw;
    padding: 3rem 0;
  }
  h2 {
    margin: 0 0 2rem 0;
    font-size: 2rem;
  }
  #education h3 {
    font-size: 1rem !important;
  }
  .seperator.sub {
    margin: 3rem 0 0 0;
  }
  .project h3 {
    font-size: 1.5rem;
    margin: -1rem 0 1rem 3rem !important;
  }
  .project .capsule {
    font-size: 0.8rem !important;
  }
  .project:last-child {
    margin-bottom: 6rem;
  }
}

@media screen and (max-width: 700px) {
  nav ul {
    display: none;
    border-top: 1px solid #7000e9;
    margin-top: 1rem;
  }
  nav ul.open {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav #menuButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav #innerContent {
    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;
  }
}

@media screen and (max-width: 950px) {
  .project h3 {
    margin: -1.5rem 0 1rem 3rem;
  }
  .project > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project > div > div:first-child .splide {
    -webkit-box-shadow: 1rem 3rem #7000e9 !important;
            box-shadow: 1rem 3rem #7000e9 !important;
    margin: 0 1rem 3rem 0 !important;
  }
  .project > div > div:first-child .splide img {
    width: 100%;
  }
  .project > div > div:first-child > img {
    width: calc(100% - 1rem) !important;
    -webkit-box-shadow: 1rem 3rem #7000e9 !important;
            box-shadow: 1rem 3rem #7000e9 !important;
    margin: 0 1rem 3rem 0 !important;
  }
  .project > div div:last-child {
    width: auto;
    max-width: 35rem;
  }
}
/*# sourceMappingURL=style.css.map */