/* BAM Mission Quick Brand Styles */

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

/* Core Brand */
body {
  background-color: #FFCE02; /* BAM yellow */
  color: #000000;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  line-height: 1.5;
  padding: 2rem;
  text-align: center;
}

/* Headings: subtle chunky look */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Add a faint brick-like underline for flavor */
h1::after, h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  margin: 0.5rem auto 0;
  background: #000000;
  border-radius: 2px;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Links */
a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #000000;
}

a
