.content {
  height: 100vh;
  /* border-bottom: solid #111 2px; */
}

body,
html {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
  /* height: 100vh; */
  background: transparent;
}

.about-wrapper {
  display: flex;
  width: 100%;
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;

  /* paling belakang */
}
#introCanvas {
  display: block;
  background: transparent;
  position: relative;
  z-index: 6;
}
.about-text {
  width: 40%;
  margin-left: 8rem;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  margin-bottom: 100px;
}
#typed-about-job {
  font-size: 1.8rem;
}
.about-text h3 {
  font-size: 3rem;
  margin-top: -20px;
  padding-bottom: 1rem;
  margin-left: 1rem;
}

.about-text p {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: 1rem;
}

.parallax-container {
  position: relative;
  width: 60%;
  height: 100vh;
  overflow: hidden;
  perspective: 1000px;
  /* border: 2px solid #000; */
  display: flex;
  justify-content: end;
  align-items: center;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease, filter 0.5s ease, scale 0.3s ease;
  pointer-events: none;
}

/* Default state */
.layer.foreground {
  z-index: 3;
  filter: grayscale(100%) blur(2px) brightness(1.2);
  transform: scale(1);
  padding-left: 700px;
}

.layer.middleground {
  z-index: 2;
  filter: grayscale(100%);
  transform: scale(1);
  background-position: center;
  background-size: cover;
  padding-left: 900px;
}

/* Hover state with animation */
.parallax-container:hover .foreground {
  filter: grayscale(40%) blur(0px);
  transform: scale(1.05); /* subtle zoom-in */
}

.parallax-container:hover .middleground {
  filter: grayscale(100%) blur(2px) brightness(1.1);
  transform: scale(1.02);
}

body .know-me {
  display: flex;
  color: white;
  background-color: #6b6b6b;
  padding: 3rem 4.3rem;
  overflow: hidden;
  justify-content: space-between;
  position: relative;
  flex-direction: row-reverse;
  box-shadow: #111 0px 0px 20px 0px;
}

body .know-me .left-intro {
  width: 60%;
  z-index: 2;
}
body .know-me .left-intro h2 {
  font-size: 3rem;
  /* margin-bottom: -20px; */
}
body .know-me .left-intro h3 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
body .know-me .left-intro p {
  font-size: 1rem;
}
body .know-me .left-intro .left-lower {
  display: flex;
}
body .know-me .left-intro .left-lower .left-side h3 {
  margin-top: 1rem;
}
body .know-me .left-intro .left-lower .left-side .logo-media {
  display: flex;
  margin-top: 1rem;
  margin-bottom: 1rem;
  gap: 1rem;
}
body .know-me .left-intro .left-lower .left-side .logo-media img {
  width: 2rem;
  filter: invert(100%);
  margin-top: -10px;
}
body .know-me .left-intro .left-lower .left-side .logo-media img:hover {
  filter: invert(70%);
  transform: scale(1.2);
}
body .know-me .left-intro .left-lower .left-side p {
  margin-top: 0;
  margin-top: -15px;
}
body .know-me .left-intro .left-lower .left-side a {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  color: white;
}
body .know-me .left-intro .left-lower .left-side a p {
  margin: 0 auto;
}
body .know-me .left-intro .left-lower .left-side a img {
  width: 2rem;
  filter: invert(100%);
  /* margin-top: -10px; */
}
body .know-me .left-intro .left-lower .left-side a:hover {
  filter: invert(30%);
}
body .know-me .left-intro .left-lower .right-side {
  margin-left: 30%;
  margin-top: 1rem;
}
body .know-me .left-intro .left-lower .right-side h3 {
  margin-bottom: 0;
}
body .know-me .left-intro .left-lower .right-side p {
  margin-top: 0;
}
body .know-me .left-intro .left-lower .right-side a img {
  width: 2rem;
  filter: invert(100%);
}
body .know-me .left-intro .left-lower .right-side a:hover {
  filter: invert(30%);
}
body .know-me .right-intro {
  width: 30%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
body .know-me .right-intro img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 400px;
  height: 400px;
  /* outline: 10px solid white;
  outline-offset: -30px; */
  border: #fff 40px solid;
}
