@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather Black'), local('Merriweather-Black'), url(https://fonts.gstatic.com/s/merriweather/v19/u-4n0qyriQwlOrhSvowK_l52_wFZWMf6.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v15/mem6YaGs126MiZpBA-UFUK0Zdc0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0b.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UNirkOUuhp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  margin: 0 auto;
  padding: 30px 10px 60px;
  max-width: 710px;
  font-family: "Open Sans", Helvetica, sans-serif;
  line-height: 1.45;
  font-size: 17px;
}

h1, h2, h3 {
  font-family: MerriWeather, Georgia, serif;
  line-height: 1;
}
header h1 {
  margin: 40px 0 60px 0;
  position: relative;
  font-size: 60px;
  letter-spacing: 1.5px;
}
header h1:before {
  display: block;
  content: "";
  float: left;
  height: 140px;
  width: 140px;
  margin: -17px 30px 0 0;
  background-image: url(logo.svg);
  background-size: cover;
}
h1 > div {
  font-size: 25px;
  margin-top: 10px;
  bottom: 0px;
  letter-spacing: 1.5px;
}

article {
  padding-top: 10px;
}

h2 {
  font-size: 24px;
  margin-top: 2em;
}

a {
  color: #317587;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

div.progress {
  clear: both;
  border-bottom: 4px solid black;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0 0 3px;
}

.progress-bar {
  position: absolute;
  background-color: #E30808;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 4px;
  transition: width 1s ease-out;
}

blockquote {
  font-style: italic;
}

div.back {
  text-align: right;
  margin: 10px 0 50px;
}

button {
  background: #222;
  color: white;
  border: none;
  padding: 5px 20px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
button:hover {
  background: #444;
}

label span {
  display: inline-block;
  min-width: 4.5em;
}
input[type=text] {
  border: none;
  border-bottom: 1px solid black;
  font: inherit;
  padding: 1px 5px;
  outline: none;
}

button.amount-hint {
  font-size: 70%;
  padding: 3px 5px;
}

#donate-form {
  position: relative;
  display: none;
  text-align: left;
}
#donate-form button[type=submit] {
  position: absolute;
  right: 0;
  top: 0;
}

#working {
  position: fixed;
  min-width: 48px;
  padding: 5px;
  padding-bottom: 53px;
  background-image: url(spin.gif);
  border: 1px solid #777;
  border-radius: 4px;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
  background-position: center bottom 5px;
  background-repeat: no-repeat;
  background-color: white;
  display: none;
}

code { font-size: 90% }

.figureRight {
  float: right;
  line-height: 1;
  text-align: right;
  margin-left: 30px;
  color: #666;
  font-size: 75%
}

.figureRight img {
  width: 230px;
  border: 1px solid #aaa;
}

.CodeMirror {
  font-size: 90%;
  max-height: 300px;
  overflow: auto;
  border: 1px solid silver;
}

@media only screen and (max-width: 760px) {
  header h1 {
    font-size: 40px;
  }  
  .figureRight img {
    width: 140px;
  }
}