* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  min-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
  font-family: sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: hsl(0, 0%, 98%);
  padding: 20px;
}

body.-withBackground::before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;

  -moz-pointer-events: none;
  -webkit-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;

  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.wrapper {
  width: auto;
  max-width: 600px;
  position: relative;
}

.wrapper-inner {
  background: #ffffff;
  -webkit-box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.19);
  border-radius: 7px;
}

body.-withBackground .wrapper-inner {
  -webkit-box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.4);
}

.image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 100px);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 7px 7px 0 0;
}

.text {
  line-height: 1.2;
  padding: 2em;
  text-align: center;
  width: 100%;
}

.text--left {
  text-align: left;
}

.text p:first-child {
  margin-top: 0;
}

.text p:last-child {
  margin-bottom: 0;
}

.legal {
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 0.5;
  text-align: center;
}

body.-withBackground .legal {
  opacity: 0.75;
  color: #fff;
}

.legal a {
  color: currentColor;
  font-size: 15px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 1.4em;
}

h2 {
  font-size: 1em;
}

h3 {
  font-size: 1em;
  margin-bottom: 0;
}

ol {
  padding-left: 0;
  counter-reset: blupp;
  list-style: none;
  position: relative;
}

ol li {
  counter-increment: blupp;
  list-style-position: inside;
  font-weight: bold;
  padding-left: 2.5em;
}

ol ol {
  margin-bottom: 1em;
}

ol ol li {
  font-weight: normal;
}

ol > li::before {
  content: counters(blupp, '.') '. ';
  width: 2.5em;
  position: absolute;
  left: 0;
}

ul {
  padding-left: 0;
}

ul li {
  padding-left: 0;
}
