      /* Text Elements */ 
    

p.paragraph.heading {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

p.paragraph.entry {
  margin-top: 5px;
  padding-top: 5px;
  padding-right: 3px;
  padding-left: 5px;
  min-height: 30px;
  width: 100%;
  border: .0625rem solid #ccc;
  border-radius: 5px;
  background-color: rgba(0, 0, 255, .07);
  cursor: pointer; 
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

span.text-element.label {
  margin-top: 15px;
  padding: 5px 8px;
  border-radius: 5px;
  background-color: #09927a;
  color: #fff;
  font-weight: 600;
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

/* Interaction Elements */

a.link-button.dl-btn {
  display: block;
  margin-top: 21px;
  margin-right: auto;
  margin-left: auto;
  padding: 5px 3px;
  width: 150px;
  border-radius: 5px;
  background-color: #09927a;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600; 
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}

/* Layout Elements */

.container.all {
  margin-right: auto;
  margin-left: auto;
  min-width: 10px;
  max-width: 1000px;
}

.container.copy {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px;
  min-width: 280px;
  max-width: 50%;
  width: 100%;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}

