  body,
html {
  background-color: #fff;
  color: #434343;
  font-family: myriad-pro, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  height: 100%;
  line-height: normal;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: myriad-pro, sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 2.2em;
  line-height: 1em;
}

h1,
.uk-block-gold p {
  color: #006838;
  margin-top: 10px;
}

a {
  text-decoration: underline;
}

.uk-grid-margin {
  margin-top: 25px !important;
}

.uk-block-gold {
  background-color: #ffd700;
}

.uk-block-gold p {
  font-size: 2em;
  font-weight: 700;
}

.indent {
  margin: 20px 0 25px 35px;
}

footer {
  background-color: #006838;
  border-top: 6px solid #ffd700;
  border-bottom: none;
}

/* NOTE: These styles are for the custom inputs; default/modified inputs have display issues on certain devices. Swiped this from https://www.w3schools.com/howto/howto_css_custom_checkbox.asp and modified for my needs. */

/* The container */
.input-container {
  background-color: #fff;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default input */
.input-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ddd;
}

/* Create a custom radio button */
.radiobtn {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid #ddd;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark,
.input-container:hover input ~ .radiobtn {
  background-color: #ccc;
}

/* When the input is selected, add a green background */
.input-container input:checked ~ .checkmark,
.input-container input:checked ~ .radiobtn {
  background-color: #006838;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after,
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-container input:checked ~ .checkmark:after,
.input-container input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the checkmark/indicator */
.input-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.input-container .radiobtn:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

/* Media Queries */
@media (max-width: 767px) {
  h1 {
    font-size: 7.25vw;
    line-height: 1.2em;
  }

  h2 {
    font-size: 6.5vw;
    line-height: 1.2em;
  }

  .uk-block-gold p {
    font-size: 6vw;
    line-height: 1.2em;
  }
}

@media print {
  .uk-container {
    margin: 0;
  }

  h1,
  h2 {
    color: #434343;
  }

  h1 {
    font-size: 18pt;
    line-height: 22pt;
    margin-bottom: 10mm;
  }

  h2,
  .uk-block-gold p {
    font-size: 12pt;
    line-height: 16pt;
  }

  html, p, label.input-container {
    font-size: 9pt;
  }

  .add-margin {
    margin-top: 25px;
  }

  .info {
    display: none;
  }

  .print-page-break {
    page-break-before: always;
  }
}
