body {
  font-family: "Poppins", sans-serif;
  background-color: #007bff;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  max-width: 800px;
  margin-left: 10px;
  margin-right: 10px;
  background: white;
  padding: 90px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-in-out;
  margin-top: 10px;
  margin-bottom: 10px;
}
h1 {
  margin-top: 0px;
  color: #007bff;
  text-align: center;
  font-weight: 600;
  animation: slideIn 1s ease-in-out;
}
h2 {
  color: #0056b3;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
  margin-top: 20px;
}
p {
  line-height: 1.6;
}
a {
  color: #007bff;
  font-weight: 600;
  transition: color 0.3s;
}
a:hover {
  color: #0056b3;
}

@media (max-width: 768px) {
  .container {
    padding: 20px;
    margin: 10px;
    width: 220px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 13px;
  }
}
