* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

.button {
  display: block;
  width: fit-content;
  padding: 0.5em 4vmin 0.5em 4vmin;
  border-radius: 5px;
  border: 2px solid #EB0296;
  background: #311847;
  color: #EB0296;
  font-size: calc(0.7em + 1vmin);
  font-weight: 700;
  text-transform: capitalize;
}
.button:hover {
  background: rgba(235, 2, 150, 0.15);
  color: #EB0296;
}

body {
  width: min(100%, 100vw);
  height: 100vh;
  overflow-x: hidden;
  background-color: #311847;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #311847;
}

.main {
  width: 100vw;
  height: 100%;
  scroll-snap-type: y proximity;
  overflow-x: hidden;
}
.main::-webkit-scrollbar {
  width: calc(2px + 2vmin);
  background: #311847;
}
.main::-webkit-scrollbar-thumb {
  background: #EB0296;
  border-radius: 1em;
}
.main section {
  position: relative;
  width: 100vw;
  margin-right: calc(2vmin + 2px);
  min-height: 100vh;
  scroll-snap-align: start;
  background: #311847;
}

.head {
  position: fixed;
  width: min(100%, 100vw);
  padding: 1em 5vmin 1em 5vmin;
  color: #311847;
  background: rgba(49, 24, 71, 0.9);
  z-index: 99;
}
.head .hamburger {
  display: none;
  z-index: 2;
  color: #EB0296;
  font-size: calc(1em + 3.5vmin);
  cursor: pointer;
}
.head .mobNav {
  width: 80vw;
  height: 100vh;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #311847;
  padding: 0 0 2em 0;
  transition: opacity 4s;
  box-shadow: 1px 1px 53px 0px black;
}
.head .mobNav::-webkit-scrollbar {
  width: calc(2px + 2vmin);
  background: #311847;
}
.head .mobNav::-webkit-scrollbar::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
}
.head .mobNav::-webkit-scrollbar-thumb {
  background: #EB0296;
  border-radius: 1em;
}
.head .mobNav__header {
  color: #f7f4f3;
  padding: 15vmin 0 20vmin 0;
  font-family: "Space Mono", monospace;
}
.head .nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head .nav__links {
  display: flex;
  gap: 1.5em;
}
.head .nav__links-linkSpan {
  color: #EB0296;
}
.head .nav__icons {
  display: flex;
  gap: 1.5em;
  align-items: center;
}
.head .nav__icons-icon {
  color: #f7f4f3;
  font-size: calc(1em + 1.5vmin);
}
.head .nav__icons-icon:hover {
  color: #EB0296;
}
.head .nav--resume {
  background: #EB0296;
  padding: 0.5em 1em 0.5em 1em;
  border-radius: 5px;
  color: #f7f4f3;
}
.head .nav--resume:hover {
  background: #f7f4f3;
  color: #EB0296;
}
.head .nav--link {
  font-weight: 600;
  color: #f7f4f3;
}
.head .nav--link:hover {
  text-decoration: underline wavy #EB0296;
}

.headerText {
  color: #f7f4f3;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
  font-size: calc(1em + 1.5vmin);
}
.headerText__order {
  color: #EB0296;
}

.lights {
  display: flex;
  position: absolute;
  top: -2.5vh;
  transform: translateY(-50%);
  z-index: 8;
  gap: 1vmin;
}
.lights span {
  width: 2vmin;
  height: 2vmin;
  border-radius: 50%;
  background-color: #311847;
}
.lights span:nth-of-type(2) {
  background-color: #EB0296;
}

.home {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0) !important;
}
.home .header {
  display: flex;
  align-items: center;
  gap: 0 0.3em;
  transform: rotate(0deg);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: calc(1.5em + 3vmin);
  color: #f7f4f3;
}
.home .header__tag {
  font-size: calc(0.1em + 2.2vmin);
  font-family: "Roboto Mono", monospace;
  font-weight: 100;
  font-style: italic;
  color: rgba(235, 2, 150, 0.65);
}
.home .me {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 12vmin 0;
}
.home .me::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 10%, #704597 0%, rgba(111, 69, 151, 0.068) 88.42%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scale(1.2);
  z-index: 0;
}
.home .me__pic {
  width: 35vmin;
  height: fit-content;
  background: #663293;
  padding: 5vmin;
  border-radius: 50%;
  position: relative;
}
.home .bottom {
  width: 100%;
  position: absolute;
  text-align: center;
  bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0vmin;
}
.home .bottom .secHeader {
  font-family: "Roboto Mono", monospace;
  font-size: calc(1em + 1.6vmin);
  font-weight: 400;
  color: rgba(247, 244, 243, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1vmin;
}
.home .bottom .name {
  padding: 0 0 0 0;
  font-size: calc(1em + 0.8vmin);
  font-weight: normal;
  color: #f7f4f3;
  color: #baa097;
}
.home .scroll {
  font-family: "Roboto Mono", monospace;
  display: flex;
  align-items: center;
  color: #EB0296;
  font-weight: 400;
  writing-mode: vertical-lr;
  position: fixed;
  z-index: 4;
  right: 2.1vmin;
  bottom: 1em;
}
.home .scrollSpan {
  font-weight: 100;
  font-size: 0.8em;
  opacity: 0.3;
  padding: 0.5em 0 0.5em 0;
}

.about {
  position: relative;
  background: rgba(255, 255, 255, 0) !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0 0 0 0;
}
.about__header {
  padding: calc(4em + 1.5vmin) 0 10vmin 0;
}
.about__contentBox {
  position: relative;
  width: 60vmin;
  height: fit-content;
  background-color: #f7f4f3;
  border-top: 2px solid black;
  padding: 2em 5vmin 2em 5vmin;
  line-height: 1.8em;
  letter-spacing: 0vmin;
  border-bottom-left-radius: 5vh;
  border-bottom-right-radius: 5vh;
  text-transform: lowercase;
}
.about__contentBox::after {
  content: "";
  position: absolute;
  top: -5vh;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5vh;
  transform: translateY(-2px);
  background: #f7f4f3;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
}

.skills {
  margin: 0 0 20vmin 0;
  padding: 10vmin 15vmin 0 15vmin;
  background-color: #311847;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.skills__header {
  color: #f7f4f3;
}
.skills__holder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills__list {
  margin: 10vmin 0 0 0;
  display: flex;
  width: 100%;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 10vmin;
}
.skills__list-item {
  padding: 0 0 0 0;
  color: #f7f4f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1em;
}
.skills__list-item .logoImage {
  font-size: calc(2em + 10vmin);
  color: #EB0296;
}
.skills__list-item .logoImage__text {
  color: #f7f4f3;
}
.skills__list-item .logoImage__django {
  max-width: calc(2em + 20vmin);
}
.skills__list-item .logoImage__nuxt {
  max-width: calc(2em + 10vmin);
}
.skills__list-item::marker {
  color: #EB0296;
}

.works {
  padding: 0 0 10vmin 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #311847;
}
.works__header {
  padding: 15vmin 0 8vmin 0;
}
.works__holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20vmin;
  width: 100%;
}
.works .workCard {
  position: relative;
  width: 95%;
}
.works .workCard__image {
  object-fit: cover;
  height: 60vmin;
  max-width: 100%;
}
.works .workCard__Text {
  position: absolute;
  right: 0%;
  top: 0;
  width: 40%;
  transform: translateX(0%);
  color: #f7f4f3;
}
.works .workCard__Text-link {
  color: #e3d8d4;
  display: flex;
  gap: 0 0.2em;
  align-items: center;
}
.works .workCard__Text-link:hover {
  color: #EB0296;
}
.works .workCard__Text-links {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 0 1em;
}
.works .workCard__Text-header {
  font-size: calc(1.5em + 1vmin);
  padding: 0 0 1em 0;
  text-align: right;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}
.works .workCard__Text-description {
  background-color: #4e2674;
  padding: 2vmin;
  text-align: right;
  box-shadow: 3px 30px 17px -25px #191515;
  line-height: calc(1em + 1.5vmin);
}
.works .workCard__Text-stack {
  font-weight: 100;
  text-align: right;
  padding: 1em 0 1em 0;
}

.notableWorks {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.notableWorks .slideWorks {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10vmin 5vmin;
  width: 100%;
  margin: 0vmin 0 0 0;
}
.notableWorks .slideWorks__holder {
  padding: 15vmin 0 0 0;
}
.notableWorks .slideWorks__title {
  margin: 0 0 20vmin 0;
  color: #d8cac5;
  font-size: calc(1em + 0.8vmin);
  text-align: center;
}
.notableWorks .slideWorks .slideCard {
  position: relative;
  background: #e3d8d4;
  width: 45vmin;
  height: calc(45vmin + 1em);
  padding: 0 1em 1em 1em;
  border-top: 1px solid #311847;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.notableWorks .slideWorks .slideCard .slideLights span {
  width: 1.2vmin;
  height: 1.2vmin;
}
.notableWorks .slideWorks .slideCard::after {
  content: "";
  position: absolute;
  top: -5vh;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5vh;
  transform: translateY(-2px);
  background: #e3d8d4;
}
.notableWorks .slideWorks .slideCard__topLinks {
  font-size: calc(0.8em + 1vmin);
  position: absolute;
  top: -2.5vh;
  right: 1em;
  z-index: 2;
  transform: translateY(-50%);
}
.notableWorks .slideWorks .slideCard__topLinks-icon {
  color: #311847;
}
.notableWorks .slideWorks .slideCard__topLinks-icon:hover {
  color: #EB0296;
}
.notableWorks .slideWorks .slideCard__top {
  display: -webkit-box;
  max-height: 15em;
  -webkit-line-clamp: 9;
  line-height: 1.5em;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notableWorks .slideWorks .slideCard__top-title {
  font-family: "Space Mono", monospace;
  font-size: calc(1.2em + 0.5vmin);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5em 0 0.5em 0;
}
.notableWorks .slideWorks .slideCard__top-description {
  font-size: calc(0.5em + 1.5vmin);
  padding: 0 0 5vmin 0;
  text-transform: lowercase;
}
.notableWorks .slideWorks .slideCard__lang {
  font-weight: 200;
  font-size: 0.9em;
}

.contact {
  padding: 10vmin 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact__top {
  padding: 8vmin 0 6vmin 0;
  color: #f7f4f3;
  text-align: center;
  line-height: 2.4em;
}
.contact__top-msg {
  font-size: calc(1.2em + 1vmin);
  font-weight: 700;
}
.contact__top-subMsg {
  font-size: calc(1em + 0.5vmin);
  font-weight: 200;
}
.contact__form {
  display: flex;
  flex-direction: column;
  row-gap: 5vmin;
  width: 40vmin;
}
.contact__form .input {
  padding: 0.7em 1.5em 0.7em 1.5em;
  font-size: calc(0.8em + 0.5vmin);
  background: none;
  border: 1px solid #EB0296;
  color: #f7f4f3;
  resize: none;
}
.contact__form .input--submit {
  background-color: #EB0296;
  padding: 0.5em 0 0.5em 0;
  cursor: pointer;
}
.contact__form .input--submit:hover {
  background-color: rgba(235, 2, 150, 0.3);
}
.contact__form .input::placeholder {
  font-size: calc(0.8em + 0.7vmin);
  color: #EB0296;
}
.contact__form .input:focus {
  outline-color: #EB0296;
  border: 1px solid #EB0296;
}
.contact__links {
  margin: 15vh 0 0 0;
  display: none;
}
.contact__links a {
  color: #EB0296;
  font-size: calc(1em + 2vmin);
}
.contact__status {
  display: none;
  font-size: 1.2em;
}
.contact__status--success {
  color: #00e600;
}
.contact__status--error {
  color: #ff6666;
}

@media only screen and (max-width: 786px) {
  .button--resume {
    padding: 0.7em 10vmin 0.7em 10vmin;
    font-size: calc(1em + 1vmin);
    margin: 10vmin 0 0 0;
  }

  .head {
    display: flex;
    justify-content: flex-start;
  }
  .head .hamburger {
    display: inline;
  }
  .head .nav {
    display: none;
  }
  .head .nav__links {
    flex-direction: column;
    gap: 10vmin;
  }
  .head .nav__links-linkSpan {
    font-size: calc(0.5em + 1vmin);
  }
  .head .nav--link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
  }

  .home .bottom {
    position: static;
    margin: 6vmin 0 0 0;
  }
  .home .scroll {
    display: none;
  }
  .home .me {
    margin: 0 0 1em 0;
  }

  .about {
    gap: 10vmin;
  }
  .about__contentBox {
    width: 90vmin;
  }

  .skills {
    padding-top: 15vmin;
    justify-content: flex-start;
  }
  .skills__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 10vmin 20vmin;
  }
  .skills__list-item {
    text-align: center;
  }

  .works {
    padding: 0 1em 0 1em;
  }
  .works__holder {
    gap: 15vmin;
    justify-content: center;
    padding: 0 calc(2px + 2vmin) 0 0;
  }
  .works .workCard__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  .works .workCard__Text {
    position: relative;
    box-shadow: 0px 4px 50px -16px black;
    background-color: rgba(83, 1, 53, 0.7);
    width: 100%;
    padding: 1em 2vmin 1em 2vmin;
  }
  .works .workCard__Text-header {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2vmin;
  }
  .works .workCard__Text-stack {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2vmin;
  }
  .works .workCard__Text-description {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2vmin;
    box-shadow: none;
    background-color: transparent;
  }
  .works .workCard__Text-links {
    text-align: left;
    justify-content: flex-start;
    padding-left: 2vmin;
  }

  .notableWorks {
    padding-top: 17vmin;
  }
  .notableWorks .slideWorks {
    padding: 0 0 0 0;
    flex-direction: column;
    align-items: center;
    gap: 20vmin 0;
  }
  .notableWorks .slideWorks .slideCard {
    width: 80vmin;
    height: calc(75vmin + 1em);
    padding: 0 1em 1em 1em;
  }
  .notableWorks .slideWorks .slideCard__top {
    display: -webkit-box;
    max-height: 15em;
    -webkit-line-clamp: 9;
    line-height: 1.5em;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .notableWorks .slideWorks__holder {
    padding: 0 0 0 0;
  }

  .contact {
    padding: 15vmin 0 0 0;
  }
  .contact__links {
    display: block;
  }
  .contact__form {
    width: 55vmin;
  }
}
.loader {
  position: fixed;
  height: 100vh;
  width: min(100%, 100vw);
  background-color: #311847;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  animation: delete 0.5s ease forwards 3s;
}

.dev {
  animation: fill-anim 3s ease forwards 2s;
  width: 60vmin;
}

.dev path:nth-child(1) {
  stroke-dasharray: 357;
  stroke-dashoffset: 357;
  animation: text-anim 2s ease forwards;
}

.dev path:nth-child(2) {
  stroke-dasharray: 322;
  stroke-dashoffset: 322;
  animation: text-anim 2s ease forwards 0.3s;
}

.dev path:nth-child(3) {
  stroke-dasharray: 222;
  stroke-dashoffset: 222;
  animation: text-anim 2s ease forwards 0.6s;
}

.dev path:nth-child(4) {
  stroke-dasharray: 240.6;
  stroke-dashoffset: 240.6;
  animation: text-anim 2s ease forwards 0.9s;
}

.dev path:nth-child(5) {
  stroke-dasharray: 316.5;
  stroke-dashoffset: 316.5;
  animation: text-anim 2s ease forwards 1.2s;
}

.dev path:nth-child(6) {
  stroke-dasharray: 196.8;
  stroke-dashoffset: 196.8;
  animation: text-anim 2s ease forwards 1.5s;
}

.dev path:nth-child(7) {
  stroke-dasharray: 322;
  stroke-dashoffset: 322;
  animation: text-anim 2s ease forwards 1.8s;
}

@keyframes text-anim {
  to {
    stroke-dashoffset: 0;
  }
}
/* @keyframes fill-anim{
    from{
        fill: transparent;
    }
    to{
        fill: white;
    }
} */
@keyframes delete {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
