@charset "utf-8";

:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #004a79;
  background: #004a79;
  font: 1em/1.3 "Segoe UI", Arial, sans-serif;
}

#wrapper {
  position: relative;
  max-width: 840px;
  margin: 1rem auto;
  overflow: hidden;
}

p {
  padding-bottom: 1rem;
}

h1, h2 {
  margin: 1rem;
  font-size: 1.6em;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
}

h2 {
  text-align: left;
  color: #004a79;
  margin: 0 0 1rem;
}
h3 {
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 400;
  color: #004a79;
  margin: 1rem 0;
}

:is(a:link, a:hover, a:visited, a:active) {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  padding: 0 0 1rem;
  list-style: none;
}

li {
  padding-left: 2.5rem;
}

ul li:before {
  content: "\2022";
  float: left;
  margin: -1px 0 0 -1.5rem;
}

header {
  display: flow-root;
}

main {
  padding: 1rem;
  background: #fff;
  border-radius: 0.25rem 0.25rem 0.5rem 0.5rem;
}
figure {
  margin-bottom: 1rem;
}
article p:last-of-type {
  color: #c6a554;
  text-align: center;
  font-size: 0.875em;
  line-height: 1.3;
}
footer p {
  color: #000;
  text-align: center;
}

a.button {
  background: #004A79;
  display: inline-block;
  padding: 0.75rem 5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.25em;
  line-height: 1.3;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width:839px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }

  p, li {
    hyphens: auto;
  }

  main {
    border-radius: 0;
  }

}

@media only screen and (max-width:480px) {
  li {
    padding-left: 1rem;
  }

  li:before {
    margin-left: -1rem;
  }
  a.button {
    padding: 0.75rem 3rem;
  }
}
