/* Styles the navigation section at top of page */

#metaline {
  font-size: 75%;
  line-height: 75%;
  margin: 0;
}

#metaline .date-text {
  color: #000;
}

#metaline > a {
  padding-left: 2em;
  text-decoration: underline;
}

h2 {
  color: #005239;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  border: 2px solid #005239;
  display: inline-block;
  padding: 12px 0px;
  outline: none;
  background-color: white;
  color: black;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 4px;
  font-size: 16px;
  margin: 4px 2px;
  width: 200px;
  text-align: center;
  height: 48px;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  line-height: 24px;
  width: 100%;
  color: inherit;
  text-align: center;
}

.btn:hover,
.btn:focus {
  background-color: #005239;
  color: white;
}

/* ----------------------- */
/* Mobile responsive rules */
/* ----------------------- */

/* Smartphone rules*/
@media only screen and (max-width : 600px) {

  /* alter spacing for headings on smartphones */
  .information h2 {
    padding-top: 0em;
    padding-left: 0.1em;
    padding-right: 0.1em;
  }

  /* alter spacing on paragraphs on smartphones */
  .information p {
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .alignleft {
    visibility: hidden;
  }

  .alignright {
    visibility: hidden;
  }

}