:root {
  --red: #c41230;
  --blue: #0d3d91;
  --dark: #111;
  --text: #222;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  line-height: 1.65;
}

/* Hero header */
.site-header {
  background-image: linear-gradient(
      to bottom,
      rgb(0, 0, 0),
      rgba(0, 18, 216, 0.133)
    ),
    url("/assets/rally2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 70%;
  min-height: 220px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  height: 80px;
  width: auto;
}

.site-header h1 {
  color: white;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Main content */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

main h2 {
  color: var(--red);
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

main p {
  margin-bottom: 1rem;
}

main a {
  color: var(--blue);
}

main a:hover {
  color: var(--red);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.25rem 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}
