* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto;
}

body,
html {
  height: 100%;
  width: 100%;
}

body {
  color: #eee;
  font-family: Poppins;
  margin: 0;
  background-image: repeating-linear-gradient(
      to right,
      #2d2a44 0 1px,
      transparent 2px 200px
    ),
    repeating-linear-gradient(to bottom, #2d2a44 0 1px, transparent 2px 200px),
    radial-gradient(at 50% 50%, #3d2bcc, #311b34);
}

.cursor1 {
  height: 30px;
  width: 30px;
  background-color: red;
  border-radius: 50%;
  position: fixed;
  z-index: 10;
  transform: translate(-50%, -50%);
  transition: transform linear;
  mix-blend-mode: difference;
  pointer-events: none;
  transition: background-image ease 0.1s;
  object-fit: cover;
}

@media (max-width: 600px) {
  .cursor1 {
    height: 0px;
    width: 0px;
  }
  .navSideBar {
    display: none;
  }
}
.navSideBar {
  display: none;
}

.navSideBar {
  display: none;
}

/*page1*/

.page1 {
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.circles li:nth-child(6) {
  left: 75%;
  width: 110px;
  height: 110px;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  width: 150px;
  height: 150px;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  width: 150px;
  height: 150px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(-1080px) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }

  100% {
    transform: translateY(0) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

/*type writer*/

.typingEffect {
  text-align: left;
  font-family: Lato, sans-serif;
}

/* Typewriter effect for Student, Developer, Student */
@keyframes typing {
  0.0000%,
  27.3488% {
    content: "";
  }
  1.1395%,
  26.2093% {
    content: "L";
  }
  2.2791%,
  25.0698% {
    content: "Le";
  }
  3.4186%,
  23.9302% {
    content: "Lea";
  }
  4.5581%,
  22.7907% {
    content: "der";
  }
  5.6977%,
  21.6512% {
    content: "Leade";
  }
  6.8372%,
  20.5116% {
    content: "Leader";
  }
  30.7674%,
  51.2791% {
    content: "";
  }
  31.9070%,
  50.1395% {
    content: "D";
  }
  33.0465%,
  49.0000% {
    content: "De";
  }
  34.1860%,
  47.8605% {
    content: "Dev";
  }
  35.3256%,
  46.7209% {
    content: "Deve";
  }
  36.4651%,
  45.5814% {
    content: "Devel";
  }
  37.6047%,
  44.4419% {
    content: "Develo";
  }
  38.7442%,
  43.3023% {
    content: "Developer";
  }
  54.6977%,
  75.2093% {
    content: "";
  }
  55.8372%,
  74.0698% {
    content: "S";
  }
  56.9767%,
  72.9302% {
    content: "St";
  }
  58.1163%,
  71.7907% {
    content: "St";
  }
  59.2558%,
  70.6512% {
    content: "Stu";
  }
  60.3953%,
  69.5116% {
    content: "Stud";
  }
  61.5349%,
  68.3721% {
    content: "Stude";
  }
  62.6744%,
  67.2326% {
    content: "Student";
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.typewriter {
  --caret: currentcolor;
}

.typewriter::before {
  content: "";
  animation: typing 13.5s infinite;
}

.typewriter::after {
  content: "";
  border-right: 1px solid var(--caret);
  animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
  border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
  border-right: 0;
}
/*nav bar*/

.container {
  padding: 20px;
}

.tabs {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid black;
  border-radius: 10px;
  padding: 10px;
  list-style: none;
  width: fit-content;
}

.tab {
  position: relative;
  padding: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
  mix-blend-mode: difference;
  color: white;
}

.cursor {
  position: absolute;
  bottom: 5px;
  left: 0;
  height: 55px;
  background: black;
  background-image: url("https://i.pinimg.com/originals/90/2f/b6/902fb683da6e99129aa43990f81607cd.gif");
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}
/*page2 */
.page2Div {
  background-image: url("https://i.pinimg.com/originals/90/2f/b6/902fb683da6e99129aa43990f81607cd.gif");
}

.page1Heading {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: url("https://i.pinimg.com/originals/90/2f/b6/902fb683da6e99129aa43990f81607cd.gif");
  background-position: top;
  font-weight: bolder;
}

/*pae 4*/
/* .domains {
  color: #eee;
  font-family: Poppins;
  margin: 0;
  background-image: repeating-linear-gradient(
      to right,
      #2d2a44 0 1px,
      transparent 2px 200px
    ),
    repeating-linear-gradient(to bottom, #2d2a44 0 1px, transparent 2px 200px),
    radial-gradient(at 50% 50%, #ba33eb, #311b34);
} */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.755);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.overlay-content {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
