.container {
  max-width: 1200px; /* Adjust as needed */
  margin: 0 auto;
  padding: 20px;
}

.header {
  background-color: #001aff7a; /* Blue */
  color: white;
  padding: 20px;
}

.logo {
  width: 100px; /* Adjust as needed */
  margin-bottom: 10px;
}

h1 {
  font-size: 2em;
}

h2,
h3 {
  color: #f44336; /* Red */
}

.donation-levels {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.level {
  background-color: #fcfcfc69; /* Light blue */
  border-radius: 5px;
  padding: 10px;
  margin: 5px;
  flex: 1 1 180px; /* Responsive width */
}

.level ul {
  list-style-type: none;
  padding: 0;
}

footer {
  margin-top: 20px;
  background-color: #3f51b5; /* Blue */
  color: white;
  padding: 10px;
}
