@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond');

html {
  font: 12pt Cormorant Garamond, Garamond, serif;
}

body {
  text-align: justify;
  hyphens: auto;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 2.5em;
}

h1, h2 {
  text-align: center;
}

p + h2 {
  text-align: left;
}

p {
  margin: 0 0 10px 0;
  padding: 0;
  text-indent: 1.5em;
}

p.center {
  text-indent: 0;
  text-align: center;
}

hr {
  overflow: visible; /* For IE */
  padding: 0;
  border: none;
  border-top: 1px solid #333;
  color: #333;
  text-align: center;
  margin: 1.2em 0;
}
hr:after {
  content: "~ ~ ~";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 2em;
  padding: 0 0.5em;
  background: white;
}

.row {
  display: flex;
}

.column {
  flex: 50%;
}

ul.pluses {
  list-style-image: url(../img/plus.png);
}

ul.minuses {
  list-style-image: url(../img/minus.png);
}

.form {
  display: flex;
}

.form#website {
  display: none;
}

.form .label {
  flex: 0 0 90px;
  text-align: right;
  padding: 5px;
}

.form .field {
  flex: 1 auto;
  padding: 5px;
}

.form .field input[type="text"] {
  width: 100%;
}

.form .field textarea {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 600px) {
  .row, .form {
    display: block;
  }

  .form .label {
    text-align: left;
  }
}
