:root {
  --blue: #32638F;
  --light-blue: #DEF0FF;
  --yellow: #F4CB12;
  --black: #1F3D57;
  --gray: #535353;
  --containerSize: 1000px;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.gap-2 {
  gap: 2rem;
}

.justify-content-start {
  justify-content: start;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

body {
  font-family: "Source Serif 4", serif;
  font-size: 19px;
  color: var(--black);
  margin: 0;
  padding: 0;
  background: white;
}

.bg-blue, .bg-blue h2 {
  background: var(--blue);
  color: var(--light-blue);
}

h1, h2, h3, h4, header a {
  font-family: Oswald, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 1rem;
  height: 180px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5svw;
  margin-bottom: 1rem;
  font-size: 3svw;
  font-weight: 200;
  max-width: var(--containerSize);
  margin: auto;
}
header nav a {
  flex: 1;
}
header nav a.donate {
  color: var(--yellow);
  font-weight: bold;
}
header .logo {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
header .logo span {
  background: var(--light-blue);
  color: var(--blue);
  display: inline-block;
  padding: 0.25em 0.5em;
  margin-top: 0.2em;
}

main section {
  padding: 2rem;
}
main section h2 {
  color: var(--blue);
  margin-bottom: 1rem;
}
main section .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
main section .content img {
  height: auto;
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}
main section .content p {
  margin-top: 0;
}

section#donation .content div {
  flex: 1 1 100%;
  width: 100%;
}

section#signup .form-container {
  display: flex;
  flex-direction: column;
}

section#signup .content {
  gap: 0;
}

section#signup .form-container div ul {
  list-style: none;
  padding: 0;
}

section#signup .form-container div ul li {
  margin-bottom: 1em;
}

section#signup .form-container div ul li input {
  margin-right: 0.75em;
}

section#issues .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

section#issues .cards .card {
  padding: 1rem;
}

section#issues .cards .card img {
  max-width: 100%;
  border-radius: 20px;
}

footer {
  background: #f5f5f5;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5svw;
    margin-bottom: 1rem;
    font-size: 2svw;
    font-weight: 200;
    max-width: var(--containerSize);
    margin: auto;
  }
  section#signup .content {
    flex-direction: column;
  }
  section#signup .form-container {
    display: flex;
    flex-direction: row;
    gap: 5rem;
  }
  section#signup .form-container div {
    flex: 1;
  }
  section#about .content {
    flex-direction: column-reverse;
  }
  section#about .content div {
    flex: 2;
  }
  section#about .content img {
    height: 100%;
    width: 100%;
  }
  section#signup .form-container div ul,
  section#signup .form-container {
    flex: 1;
  }
  section#issues .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  section#donation .content {
    flex-direction: column;
  }
  section#donation .content div {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  section,
  footer {
    padding: 2rem 15%;
  }
  header nav {
    gap: 1.5rem;
    font-size: 16px;
  }
  header .logo {
    font-size: 2.5rem;
  }
  section#about .content img {
    height: auto;
    width: 30rem;
  }
  section#about .content {
    flex-direction: row;
  }
  section#donation .content {
    flex-direction: row;
  }
  section#donation .content div {
    flex: 1 1 100%;
    width: 100%;
  }
  section#issues .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*# sourceMappingURL=site.css.map */