body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  position: relative;
  background: url("./images/hero.jpg") no-repeat top center/cover;
  color: white;
  padding: 110px 20px;
  opacity: 0.8;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

header h1 {
  font-size: 48px;
}

header h1,
header p,
header .btn {
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  width: 50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  background-color: #007bff;
}

#features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.feature {
  width: 300px;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 10px;
}

#download {
  padding: 20px 10px;
  background: #007bff;
  color: white;
}

.download-buttons {
  display: flex;
  justify-content: center;

  margin-top: 15px;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  width: 180px;
}

.download-button img {
  width: 200px;
  height: 50px;
  margin-right: 10px;
}

footer {
  padding: 10px;
  background: #333;
  color: white;
}
footer p {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-button {
    width: 100%;
    margin-bottom: 10px;
  }

  .download-button img {
    width: 150px;
    height: 40px;
    margin-right: 0;
  }
}

@media screen and (min-width: 769px) {
  .download-buttons {
    flex-direction: row;
  }

  .download-button {
    width: auto;
    margin-bottom: 0;
  }

  .download-button img {
    width: 200px;
    height: 50px;
    margin-right: 10px;
  }
}
