* {
  margin:0;
  padding:0;
  outline:none;
  list-style:none;
  text-decoration:none;
  box-sizing:border-box;
  color:#FFF;
  background: transparent;
  border:none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; 
}

header{
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
}

/* -------------- MAIN CONTENT --------------*/
.main-index {
  padding: 2vh 2vw;
}

/* -- TITLE -- */
.title-wrapper {
  height: 98vh;
  width: 96vw;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.title {
  font-size: clamp(20px, 5vw, 100px);
  user-select: none;
}

/* -- Bounce Arrow -- */
.arrow-div {
  width: 100%;
  display: flex;
}

.arrow {
  position: relative;
  z-index: -1;
  margin: -50px auto 0 auto;
  height: 25px;
  animation: bounce 3.6s ease infinite;
  transform-origin: 50% 50%;
  filter: invert(1);
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  5.55556% {
    transform: translateY(0);
  }
  11.11111% {
    transform: translateY(0);
  }
  22.22222% {
    transform: translateY(-15px);
  }
  27.77778% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-15px);
  }
  44.44444% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* -- About Me -- */
.about-me{
  width: 80%;
  max-width: 1500px;
  margin: auto;
  user-select: none;
}

.about-me-text{
  font-size: 20px;
  text-align: justify;
}

/* -- TITLE 2 -- */
.title2 {
  width: fit-content;
  margin: 0 auto;
  padding: 20vh 0 10vh 0;
}

.title2 h2{
  margin: 0;
  display: inline-block;
  text-align: center;
  font-size: clamp(40px, 4vw, 80px);
  font-weight: 300;
  text-decoration: underline 2px;
  text-underline-offset: 10px;
  user-select: none;
}

@media screen and (max-width: 840px) and (min-width: 481px) {
  .title {
    font-size: clamp(20px, 6vw, 100px);
  }

  .about-me-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .title {
    font-size: clamp(20px, 7vw, 100px);
  }

  .about-me-text {
    font-size: 16px;
  }
}