/* For parallax scroll */
.parallax-image {
  padding-top: 50%;
  position: relative;
  z-index: -10;
}

.parallax-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.parallax-image h1 {
  color: white;
  font-weight: bold;
  font-size: 80px;
  transform: translate(-50%, -50%);
  width: 1000px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 25%;
  left: 50%;
}

.parallax-image h2 {
  color: white;
  font-weight: bold;
  font-size: 35px;
  transform: translate(-50%, -50%);
  width: 1000px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
}

.parallax-image p {
  color: white;
  font-weight: bold;
  font-size: 25px;
  transform: translate(-50%, -50%);
  width: 1000px;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
}

main {
  background-color: black;
  color: white;
  padding: 100px 20px;
  background-color: #000;
  padding: 50px 0;
}
main h1 {
  margin-left: 2rem;
  color: #fff;
}
main h3 {
  margin-left: 2rem;
  color: gray;
}

/* Responsive styling for mobile devices */
@media screen and (max-width: 1000px) {
  .parallax-image {
    padding-top: 70%;
  }
  .parallax-image h1 {
    font-size: 40px;
    width: 90%;
    padding: 10px;
    top: 20%;
    left: 50%;
  }
  .parallax-image h2 {
    font-size: 25px;
    width: 90%;
    padding: 10px;
    top: 35%;
    left: 50%;
  }
  .parallax-image p {
    font-size: 18px;
    width: 90%;
    padding: 10px;
    top: 45%;
    left: 50%;
  }
  main {
    padding: 50px 10px;
  }
  main h1 {
    margin-left: 1rem;
    font-size: 24px;
  }
  main h3 {
    margin-left: 1rem;
    font-size: 18px;
  }
}
/* Responsive styling for mobile devices */
@media screen and (max-width: 515px) {
  .parallax-image {
    padding-top: 70%;
  }
  .parallax-image h1 {
    font-size: 40px;
    width: 90%;
    padding: 10px;
    top: 8%;
    left: 50%;
  }
  .parallax-image h2 {
    font-size: 25px;
    width: 90%;
    padding: 10px;
    top: 43%;
    left: 50%;
  }
  .parallax-image p {
    font-size: 18px;
    width: 90%;
    padding: 10px;
    top: 70%;
    left: 50%;
  }
  main {
    padding: 50px 10px;
  }
  main h1 {
    margin-left: 1rem;
    font-size: 24px;
  }
  main h3 {
    margin-left: 1rem;
    font-size: 18px;
  }
}/*# sourceMappingURL=about.css.map */