body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #333;
  background-image: url('https://i.imgur.com/fA06PIq.jpeg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.header {
  width: 100%;
  padding: 10px;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 3px solid #444;
  box-shadow: 0 0 10px #000;
}

.header img {
  width: 50px;
  height: 50px;
  margin-left: 20px;
}

.content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  top: 50px;
}

.logo {
  width: 250px;
  margin-bottom: 20px;
}

.description-img {
  width: 300px;
  margin-bottom: 30px;
}

.download-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #555;
  border-radius: 10px;
  padding: 20px;
  background-color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-section a {
  text-decoration: none;
}

.download-section button {
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  border: 3px solid #4CAF50;
  outline: none;
  width: 100%;
  max-width: 250px;
  background-color: transparent;
  font-size: 16px;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-section button:hover {
  background-color: #4CAF50;
}

.footer {
  width: 100%;
  padding: 20px;
  background-color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 3px solid #444;
  box-shadow: 0 -2px 10px #000;
}

.footer-content {
  text-align: center;
}

.footer img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.footer .name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer .description {
  font-size: 14px;
  color: #bbb;
  max-width: 500px;
  margin-bottom: 20px;
}

.footer .disclaimer {
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .content {
    top: 20px;
  }

  .download-section button {
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 12px 25px;
  }

  .footer img {
    width: 80px;
    height: 80px;
  }

  .footer .name {
    font-size: 20px;
  }

  .footer .description {
    font-size: 12px;
  }

  .description-img {
    width: 340px;
  }
}
