body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  color: #333;
  text-align: center;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 600px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.2em;
}
p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgb(82, 82, 82);
}
.btn-download {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}
.btn-download:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}
/* .logo {6210a09bd7bba40684e518724a7ec958 (1).svg
      max-width: 150px;
      margin-bottom: 30px;
  } */
.logo {
  max-width: 150px;
  margin-bottom: 30px;
}

.footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5em;
  }

  .logo {
    margin-bottom: 0;
  }

  .container {
    padding: 10px;
    box-shadow: 0 0 0 white;
  }

  p {
    margin-bottom: 10px;
  }

  .footer {
    margin-top: 10px;
  }

  body{
    background: white;
  }
  
}
