
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  padding: 20px;
}

/* Headings */
header, .slogan, .about, .footer, .donate {
  text-align: center;
  margin-bottom: 30px;
}

h1, h2, h3, h5 {
  margin: 10px 0;
}

.red {
  color: red;
}

.green {
  color: green;
}

.blue {
  color: #002060;
}

/* Links */
.links a {
  display: block;
  margin: 8px 0;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.links a:hover {
  text-decoration: underline;
}

/* About Section */
.about .bio {
  margin-bottom: 10px;
}

.green-list {
  list-style-type: none;
  padding: 0;
  color: green;
}

.green-list li {
  margin: 5px 0;
}

/* Donate Section */
.donate form {
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .links a {
    font-size: 1rem;
  }
}
