* {
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: serif;
}
body {
  font-size: 16px;
  line-height: 1.75rem;
}
h1, h2, h3 {
  color: #444;
  font-family: sans-serif;
}
h1 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1.3rem;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
p, picture {
  margin-bottom: 1rem;
}
ol, ul {
  margin-left: 48px;
  margin-bottom: 1rem;
}
ul > li {
  line-height: 1.4rem;
  margin-bottom: .5rem;
}
a {
  color: #054f09;
}
img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 800px) {
  .container-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-image: url('./bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
  }
}
.container {
  width: 100%;
  max-width: 688px;
  margin: 0 auto;
  background-color: rgba(250,250,250,.9);
}
.container > .-border {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 8px 8px 8px;
  display: flex;
  flex-direction: column;
}
.main {
  margin-top: 48px;
  flex-grow: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.footer {
  padding-top: 1rem;
  text-align: right;
}
.footer a {
  text-decoration: none;
  color: #888;
  margin-left: .5rem;
}
.discreet {
  color: #888;
}
.discreet a {
  color: #7abe7e;
}
.mt-0 {
  margin-top: 0;
}
.mt-48 {
  margin-top: 48px;
}
.align-right {
  text-align: right;
}
.btn-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 4px;
  padding: 8px 24px;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: normal;
  color: #fff;
  background-color: #054f09;
  border-radius: 4px;
}
.cta span,
.cta a {
  color: #fff;
  font-family: sans-serif;
}
.cta a {
  font-weight: normal;
}
.cta:hover {
  background-color: #09690e;
  cursor: pointer;
}
.cta:focus {
  background-color: #054f09;
}
.icon-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.icon-bar img {
  width: auto;
  height: 36px;
  opacity: .5;
}
