body,
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  background-image: url("bg.png");
  background-size: cover;    
  background-position: center;
  background-repeat: no-repeat;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Noto Kufi Arabic", sans-serif;
  /*font-family: "Cairo", sans-serif;*/
  font-weight: bold;
}

.hero {
width: 100%;
height: 100%;
  background-image: url("bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  position: relative;
  right: 650px;
  bottom: 40px;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.title {
  color: #ffd47f;
  font-size: 70px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  margin: 0;
}

.description {
  color: white;
  width: 380px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.btn-next {
  position: relative;
  right: 55px;
    top: 180px;
  background-color: #ffd47f;
  color: white;
  border: none;
  width: 130px;
  height: 40px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 0 0 12px 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.btn-next:hover {
  background-color: #fbbf24;
}
@media (max-width: 768px) {
  .hero {
    background-image: url("bg2.jpg");
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    text-align: center;
  }

  .content {
    width: 100%;
    position: static;
    right: 0;
    bottom: 0;
    padding: 0 20px;
  }

  .title {
    font-size: 42px;
  }

  .description {
    width: 100%;
    font-size: 14px;
  }

  .btn-next {
    position: relative;
    margin-top: 40px;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 40px;
    font-size: 20px;
  }
}