@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Poppins", serif;
  box-sizing: border-box;
  overflow: hidden;
}

.home {
  background-image: url("./images/homepage-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 98vh;
  border-radius: 10px;
  position: relative;
}
.home__background {
  height: 100%;
  width: 30%;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(30, 30, 30, 0.9) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
.home__container {
  position: absolute;
  bottom: 200px;
  margin-left: 100px;
  max-width: 650px;
}
.home__text {
  color: white;
  font-size: 24px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.home__btn {
  background: linear-gradient(135deg, #ff5722, #e64a19);
  font-size: 18px;
  color: white;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .home__background {
    height: 30%;
    width: 100%;
    bottom: 0px;
    background: rgb(60, 58, 58);
    background: linear-gradient(
      0deg,
      rgba(60, 58, 58, 1) 7%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .home__container {
    max-width: 450px;
    margin-left: 0px;
    bottom: 35%;
    padding: 20px;
  }

  .home__text {
    font-size: 18px;
  }

  .home__btn {
    font-size: 14px;
    padding: 8px 16px;
    width: 100px;
  }
}

@media (max-width: 480px) {
  .home__container {
    max-width: 450px;
    bottom: 40%;
    padding: 10px;
  }

  .home__text {
    text-wrap: pretty;
    font-size: 16px;
  }

  .home__btn {
    font-size: 14px;
    padding: 8px 16px;
    width: 150px;
  }
}
