.about-section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 50%;
  align-items: center;
  margin: 6% 0;
  padding: 3% 4.5%;
}

.home-page {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.home-page-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.home-page-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.about-section article {
  width: 80%;
  font-size: 18px;
  text-align: center;
  font-size: 1.3rem;
  margin: 6% 0;
  color: rgb(173 177 187);

}

.start-btn {
  border: none;
  background-color: #7c38e2;
  color: #cac7ff;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  width: 100%;
}



.about-section h3 {
  color: rgb(179, 187, 199);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  width: 92%;
}

@media (max-width: 1200px) {
  .about-section {
    width: 53%;
    padding: 2.5% 4%;
  }

  h1 {
    font-size: 2.2rem;
  }

  .about-section h3 {
    font-size: 1.4rem;
  }

  .about-section article {
    font-size: 1.1rem;
    width: 85%;
  }

  .start-btn {
    font-size: 1.1rem;
    padding: 0.7rem 1.4rem;
    border-radius: 0.5rem;
  }

  .home-page-background-img {
    width: 108%;
  }

  .home-page,
  .movies-section {
    min-height: 85.4vh;
  }
}

@media (max-width: 830px) {
  .about-section {
    width: 63%;

  }

  h1 {
    font-size: 1.9rem;
  }

  .about-section h3 {
    font-size: 1.3rem;
  }

  .about-section article {
    font-size: 1rem;
    width: 90%;
  }

  .start-btn {
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
    border-radius: 0.5rem;
  }

  .home-page-background-img {
    width: 115%;
  }

  .home-page,
  .movies-section {
    min-height: 86.7vh;
  }
}

@media (max-width: 680px) {
  .home-page-background-img {
    width: 130%;
    height: 170%;
  }

  .about-section {
    width: 74%;

  }

  .home-page,
  .movies-section {
    min-height: 86.7vh;
  }
}

@media (max-width: 480px) {
  .about-section {
    width: 85%;

  }

  .about-section article {
    font-size: 14px;
    margin: 5% 0;
  }

  .home-page-background-img {
    width: 160%;
  }

  h1 {
    font-size: 1.5rem;
  }

  .about-section h3 {
    font-size: 1rem;
    width: 85%;
    margin: 4% 0;
  }

  .about-section article {
    font-size: 0.8rem;
    width: 90%;
  }

  .start-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    margin-top: 6%;
  }


}