
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Exo 2', Arial, sans-serif;
  background: url('https://palaceinthesky.gallery/wp-content/uploads/2025/06/wallpaper-500-50.jpg') repeat;
  background-size: 15%;
  color: #fff;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

.navbar .icon {
  display: none;
  font-size: 30px;
  color: white;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}


.btn {
  background-color: #384fcc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
}

.btn:hover {
  background-color: #4763ff;
}


footer {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
}


@media screen and (max-width: 768px) {
  .navbar ul {
    display: none;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .navbar .icon {
      display: block;
      text-decoration: none;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image img {
    max-width: 80%;
  }
}
