@import url("https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Share+Tech+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  cursor: none;
  /* point theme
  background-color: #f2f2f2;
  background-color: white;
  background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 1px);
  background-size: 6px 6px;
  */

  /* 
  background-color: white;
  background-image: repeating-linear-gradient(white, white 20px, rgba(0, 0, 0, 0.1) 21px, white 22px);
  */
  background-color: white;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 30px 30px; /* Adjust for subtlety */
}

body button,
body a {
  cursor: none;
  outline: none;
}

body a {
  color: #000;
}

body #contact-left #contact-line {
  background: #000;
}

body main #skills .skill-line {
  border: 1px solid #000;
}

body main #skills .skill-line div {
  background: #000;
}

body main #edu .edu-block {
  border-left: 0.3rem solid #000;
}

body main #project .project-block {
  border: 2px solid #000;
}

body main #project .project-block .project-block-cont {
  color: #000;
}

body main #contact input,
body main #contact textarea {
  border: 1px solid #000;
}

body main #contact button {
  color: #000;
  border: 1px solid #000;
  background: none;
}

body main #contact button:hover {
  background: #000;
  color: #fff;
}

body footer {
  background-color: #1e1e1e;
  color: #fff;
}

.dark {
  background: #000;
  background-color: #1e1e1e; /* Dark background */
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px; /* Adjust for subtlety */
}

.dark a {
  color: #fff;
}

.dark button {
  color: #fff;
}

.dark nav {
  color: #fff;
}

.dark nav #day-night {
  background-color: black;
}

.dark #contact-left #contact-line {
  background: #fff;
}

.dark main {
  color: #fff;
}

.dark main #skills .skill-box {
  border: 1px solid #fff;
  background-color: transparent;
  color: white;
}

.dark main #skills .skill-check svg path {
  stroke: white; /* Changes the border color (stroke) to white */
  fill: none; /* Keeps the inside of the arrow transparent */
}

.dark main #edu .edu-block {
  border-left: 0.3rem solid #fff;
}

.dark main #project .project-block {
  border: 2px solid #fff;
}

.dark main #project .project-block .project-block-cont {
  color: #fff;
}

.dark main #contact input,
.dark main #contact textarea {
  border: 1px solid #fff;
  color: #fff;
}

.dark main #contact button {
  color: #fff;
  border: 1px solid #fff;
}

.dark main #contact button:hover {
  background: #fff;
  color: #000;
}

.dark footer {
  color: #fff;
}

.cursor {
  overflow-x: visible;
  /* background: #ffd271; */
  background: #22211fb0;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  -webkit-transition-duration: 10ms;
  transition-duration: 10ms;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-animation: cursorAnimation 0.5s infinite alternate;
  animation: cursorAnimation 0.5s infinite alternate;
  position: fixed;
  z-index: 9999; /* High z-index to stay above images */
  pointer-events: none; /* Prevent cursor from blocking interactions */
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

.dark .cursor {
  background-color: rgba(255, 255, 255, 0.655);
}

.red {
  background: #b82424be !important;
}

.red::after {
  border: 2px solid #ce2727 !important;
}

.cursor::after {
  content: "";
  padding: 2rem;
  border: 2px solid #ffd271;
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  top: -10px;
  left: -10px;
  -webkit-animation: cursorAnimation2 0.5s infinite alternate;
  animation: cursorAnimation2 0.5s infinite alternate;
}

#container {
  padding: 1rem;
}

nav {
  padding-top: 1px; /* without this a weird bug will happen in mobile devices where the scrol in first load will be a little bit down */
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  margin-right: 1.5rem;
}

nav #day-night {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  height: 50px;
  width: 50px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  position: fixed;
  top: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  nav #day-night {
    position: absolute;
    z-index: 30;
  }
}

nav #day-night img {
  display: block;
  width: 30px;
  cursor: pointer;
  animation: rotateAndPulse 7s infinite linear;
}

#day-night img.sun {
  filter: invert(100%);
}
@keyframes rotateAndPulse {
  0% {
    transform: rotate(0deg) scale(1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

#contact-left {
  position: fixed;
  padding: 1rem;
  margin-top: 2rem;
  text-align: center;
}

#contact-left #contact-left-links {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

#contact-left #contact-line {
  height: 30vh;
  padding: 1px;
  display: inline-block;
}

#contact-left a {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

main {
  position: relative;
  padding: 1rem;
  width: 85%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  main {
    padding: 0;
  }
}

main .block {
  padding: 2rem;
  margin-bottom: 2rem;
}

main .block .heading {
  /* font-family: "Major Mono Display", monospace;
  font-size: 3rem; */

  font-family: "Tilt Prism", sans-serif;
  font-weight: 400;
  font-size: 5rem;
}

main .block .heading > div {
  font-family: "Tilt Prism", sans-serif;
  font-weight: 400;
}

main .block p {
  padding: 1rem;
}

main #about {
  position: relative;
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 90vh;
}

main #about #heading--main {
  font-size: 5rem;
}
main #about .arrow-bottom {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
main #about .arrow-bottom img {
  display: block;
  transform: rotate(90deg);
  width: 37px;
}

main #skills .skill-blocks-all {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 3rem;
}

main #skills .skill-block {
  margin-top: 0rem;
  /* padding: 1rem; */
  padding: 1.3rem;
}

.skill-box {
  display: flex;
  background-color: #fff;
  border: 2px solid #000;
  font-size: 18px;
  height: 45px;
}

.skill-box div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.skill-box .skill-check {
  font-size: 18px; /* Adjust the font size of the checkmark */
  width: 45px;
  position: relative;
  overflow: hidden;
}

.skill-check svg {
  position: absolute;
  opacity: 0;
  transform: scale(0); /* Starts below and small */
  pointer-events: none; /* Optional: prevents unwanted interactions */
  z-index: 10; /* Ensures it appears above */
}
.skill-box .text {
  border-left: solid 2px;
}

.skill-box.show .skill-check svg {
  animation: popUp 0.8s ease-in-out forwards;
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: scale(0); /* Start small, no rotation */
  }

  50% {
    transform: scale(2); /* Settles back with full rotation */
  }

  100% {
    opacity: 1;
    transform: scale(1); /* Settles back with full rotation */
  }
}

.skill-box:nth-child(1) .skill-check svg {
  animation-delay: 0.2s;
}
.skill-box:nth-child(2) .skill-check svg {
  animation-delay: 0.4s;
}
.skill-box:nth-child(3) .skill-check svg {
  animation-delay: 0.6s;
}
.skill-box:nth-child(4) .skill-check svg {
  animation-delay: 0.8s;
}
.skill-box:nth-child(5) .skill-check svg {
  animation-delay: 1s;
}
.skill-box:nth-child(6) .skill-check svg {
  animation-delay: 1.2s;
}
.skill-box:nth-child(7) .skill-check svg {
  animation-delay: 1.4s;
}
.skill-box:nth-child(8) .skill-check svg {
  animation-delay: 1.6s;
}
.skill-box:nth-child(9) .skill-check svg {
  animation-delay: 1.8s;
}
.skill-box:nth-child(10) .skill-check svg {
  animation-delay: 2s;
}

main #edu .edu-block-main {
  margin-top: 1rem;
  padding: 1rem;
  padding-left: 6rem;
}

main #edu .edu-block-main .edu-block-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main #edu .edu-block-main .edu-block-sub .edu-block {
  margin-bottom: 2rem;
  padding: 1rem;
}

main #edu .edu-block-main .edu-block-sub .edu-block .edu-block-heading {
  font-size: 1.6rem;
}

main #project-all::-webkit-scrollbar {
  width: 0em;
}

main #project {
  position: relative;
}

main #project #project-all {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

main #project #project-all .project-block {
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 1rem;
}

main #project #project-all .project-block img {
  width: 100%;
  z-index: -1;
}

main #project #project-all .project-block .project-block-cont {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

main #project #project-all .project-block .project-block-cont .project-block-heading {
  font-size: 1.3rem;
}

main #project #project-all .project-block .project-block-cont span,
main #project #project-all .project-block .project-block-cont p {
  font-size: 1.2rem;
}

main #project #project-all .project-block .project-block-cont .project-block-links-source {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 10px;
}

main #project #project-all .project-block .project-block-cont .project-block-links-source a {
  display: block;
}

main #project #project-all .project-block .project-block-cont .used-lang {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: visible;
}

main #project #project-all .project-block .project-block-cont .used-lang .label {
  padding: 0 0.3rem;
  border-radius: 1rem;
  background: rgba(166, 250, 243, 0.623);
}

@media (min-width: 768px) {
  main #project #project-all .project-block .project-block-cont .used-lang .label {
    line-height: 40px;
    margin: 0px 5px;
  }
}

main #project #project-all .project-block1 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}

main #project #project-all .project-block2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  -ms-grid-row: 4;
  grid-row: 4;
}

main #project #project-all .project-block3 {
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

main #project #project-all .project-block4 {
  -ms-grid-row: 2;
  grid-row: 2;
  -ms-grid-column: 1;
  grid-column: 1;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

main #project #project-all .project-block5 {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 3;
  grid-column: 3;
}

main #project #project-all .project-block6 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 4;
  grid-row: 4;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

main #project #project-all .project-block7 {
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

main #contact #contact-block {
  padding: 0.5rem;
  margin-left: 3rem;
  margin-top: 2rem;
  text-align: right;
}

main #contact #contact-block .contact-input {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

main #contact #contact-block label {
  font-size: 1rem;
  width: 15%;
  margin-right: 1rem;
}

main #contact #contact-block input,
main #contact #contact-block textarea {
  width: 90%;
  outline: none;
  padding: 0.8rem;
  background: none;
}

main #contact #contact-block button {
  padding: 0.6rem 2rem;
}

footer {
  padding: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
}

.animaaation {
  -webkit-animation-name: wipe-enter;
  animation-name: wipe-enter;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes wipe-enter {
  0% {
    width: 0;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
  }
  50% {
    width: 50%;
  }
}

@keyframes wipe-enter {
  0% {
    width: 0;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
  }
  50% {
    width: 50%;
  }
}

@-webkit-keyframes cursorAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
}

@keyframes cursorAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
}

@-webkit-keyframes cursorAnimation2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
}

@keyframes cursorAnimation2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
}

#contact-links {
  display: none;
}

@media (max-width: 768px) {
  main {
    width: 100%;
  }
  main #about #heading--main {
    font-size: 4rem;
  }
  main .block .heading {
    width: 100% !important;
    font-size: 2.2rem;
  }
  main .block {
    padding: 1rem 0rem 1rem 1rem;
  }
  main #skills .skill-blocks-all {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  main #skills .skill-block .skill-block-heading {
    font-size: 1rem;
  }
  main #skills .skill-block .skill-line {
    padding: 0.4rem;
  }
  main #edu .edu-block-main {
    padding-left: 1rem;
  }
  main #edu .edu-block-main .edu-block-sub .edu-block .edu-block-heading {
    font-size: 1.3rem;
  }
  main #project #project-all {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  main #project #project-all .project-block .project-block-cont span,
  main #project #project-all main #project #project-all .project-block .project-block-cont p {
    font-size: 1rem;
  }
  main #project #project-all .project-block1 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  main #project #project-all .project-block2 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  main #project #project-all .project-block3 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
  main #project #project-all .project-block4 {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  main #project #project-all .project-block5 {
    -ms-grid-row: 5;
    grid-row: 5;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  main #project #project-all .project-block6 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 6;
    grid-row: 6;
  }
  main #project #project-all .project-block7 {
    -ms-grid-row: 7;
    grid-row: 7;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  main #contact #contact-block {
    margin-left: 1rem;
    text-align: unset;
  }
  main #contact #contact-block .contact-input {
    display: block;
  }
  main #contact #contact-block input,
  main #contact #contact-block textarea {
    width: 100%;
    padding: 0.6rem;
  }
  main #contact #contact-block button {
    padding: 0.4rem 1rem;
  }
  #contact-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 1rem;
    padding-bottom: none;
  }
  #contact-left {
    display: none;
  }
}
#contact .hidden {
  display: none;
}
#contact .success {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}
#contact .error {
  color: red;
  font-weight: bold;
  margin-top: 10px;
}

@media (max-width: 800px) {
  main .block .heading {
    width: 70%;
  }
}
/*# sourceMappingURL=style.css.map */
