@media (max-width: 390px) {
  html {
    font-size: 7px;
  }
}
@media (min-width: 391px) {
  html {
    font-size: 8px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 9px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 10px;
  }
}
html, body {
  min-height: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smooth: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font: 500 1.6rem "futura-pt", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
}

img {
  max-width: 100%;
}

a, button {
  border-radius: 0;
  cursor: pointer;
}

sup {
  line-height: 1em;
  vertical-align: super;
  display: inline-block;
  position: static;
}

input {
  border-radius: 0;
}

iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

* ::-moz-selection {
  color: #fff;
  background-color: #d21119;
}
* ::-moz-selection * {
  color: #fff;
}
* ::-moz-selection {
  color: #fff;
  background-color: #d21119;
}
* ::selection {
  color: #fff;
  background-color: #d21119;
}
* ::-moz-selection * {
  color: #fff;
}
* ::selection * {
  color: #fff;
}

.container {
  max-width: 1200px;
  width: 100% !important;
}
#header{
    padding:2rem 2rem 7rem 2rem;
}
#header .logo{
    max-width:700px;
}
.social .fa-brands{
    color:#002954;
    font-size: 4.5rem;
    padding:1.5rem;
}
a.donate-btn{
    display: inline-block;
    color:#fff;
    text-decoration: none;
    font-family: "abril-display", serif;
    font-style: italic;
    letter-spacing: 0.2em;
    white-space: nowrap;
    background:#002954;
    font-size: 2.5rem !important;
    padding:1rem 4rem;
    margin:1rem;
}
#quote-section{
    background: url(red-bg.jpg) no-repeat center center;
    background-size: cover;
    color:#fff;
    padding: 4rem;
}
.quote{
    font-size: 3.2rem;
    font-style: italic;
    font-family: "abril-display", serif;
    text-align: center;
    text-wrap: pretty;
    position: relative;
}
.quote::before{
    content: ' ';
    background: url(quote.svg) no-repeat top left;
    width: 6rem;
    height: 6rem;
    display: block;
    position: absolute;
    top:-3rem;
    left: -3rem;
}
.quote::after{
    content: ' ';
    background: url(quote.svg) no-repeat top left;
    width: 6rem;
    height: 6rem;
    display: block;
    position: absolute;
    bottom: 0;
    right: -3rem;
    transform: scale(-1, -1)
}
.portrait{
    z-index: 100;
    position: relative;
    text-align: center;
}
#results{
    padding: 8rem 2rem 6rem;
    background: url(star-light.svg) no-repeat 3rem 3rem;
    background-size: 40%;
}
#results .container{
    max-width: 960px;
}
h2{
    text-align: center;
    color: #002954;
    font-family: "abril-fatface", serif;
    font-style: italic;
    font-size: 5rem;
}
h3{
    color: #002954;
    font-family: "abril-fatface", serif;
    font-style: italic;
    font-size: 4rem;
}
h2 span, h3 span{
    color:#bf1e2e;;
}
hr{
    border-top: #002954 0.3rem solid;
    width: 16rem;
    margin: 2rem auto;
}
.fa-ul{
    color: #002954;
    font-family: "abril-display", serif;
    font-size: 3rem;
}
.fa-ul li{
    margin-bottom: 0.5em;
}
.fa-ul i{
    color: #bf1e2e;
}
.textblock{
    font-size: 2rem;
    padding:2rem;
}
#priorities{
    padding:4rem 3rem;
    background: #eaf4ff;
    position: relative;
}
#priorities::before{
    content: ' ';
    background: linear-gradient(0deg,#eaf4ff 0%, rgba(0,41,84,0.2) 100%);
    height: 0.8rem;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left:0;
}
#priorities .portrait img{
    transform: scale(1);
}
#priorities .portrait{
    margin-bottom: -5rem;
}
#footer{
    background:#002954;
    padding: 4rem;
}
#footer .container{
    max-width: 960px;
}
#footer .logo{
    max-width: 46rem;
}
#footer .social .fa-brands{
    color:#ffffff;
}
#footer a.donate-btn{
    background:#bf1e2e;
}
.disclaimer{
    text-align: center;
    color: #667f98;
    padding: 2rem;
}
#signup{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 4rem auto;
}
#signup input {
    background: #002954;
    border: 0;
    border-bottom: 2px solid #667f98;
    padding: 1rem;
    margin: 1rem;
    color: #fff;
}
#signup input::placeholder{
    color: #667f98;
}
#signup button {
    border: 0;
    padding: 1rem 3rem;
    margin: 1rem;
    color:#fff;
    background: #bf1e2e
}
.signup-message {
  color: #667f98;
  text-align: center;
  font-size: 3rem;
  padding: 2rem;
  font-style: italic;
  margin-top: 2rem;
}
@media (min-width: 768px) {
    .portrait img{
        transform: scale(1.7);
    }
    #signup{
        flex-direction: row;
    }
}