:root {
  --mouse-x: 0;
  --mouse-y: 0;
  --scroll-y: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Times New Roman", Times, serif;
  color: #362000;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.background {
  --rain: 0.5;
  --y: calc(var(--scroll-y) * -40vh + var(--mouse-y) * 5vh);
  --x: calc(var(--mouse-x) * 2vw);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vh;
  z-index: -1;
  overflow: hidden;
}
.background img {
  position: absolute;
  top: -5vh;
  left: -2vw;
  width: 104vw;
  height: 200vh;
  object-fit: cover;
  pointer-events: none;
  transform: translate3d(var(--x), var(--y), 0);
}
.background img.sky, .background img.lightning {
  transform: translate3d(var(--x), calc(0.2 * var(--y)), 0);
}
.background img.bg {
  transform: translate3d(var(--x), calc(0.5 * var(--y)), 0);
}
.background::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4;
  pointer-events: none;
  background: url("rain.svg") repeat;
  animation: rain 8s linear infinite;
  background-size: 256rem 160rem;
  opacity: var(--rain);
}
@keyframes rain {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 128rem 320rem;
  }
}

h1 {
  font-size: max(3.5rem, 5vw);
  font-weight: 400;
}
h1 strong {
  font-weight: 400;
}
h1 small {
  margin-block-end: -0.5em;
  display: block;
  text-transform: uppercase;
  font-size: 0.4em;
  line-height: 1;
}
h1 small em {
  display: block;
  font-size: 1.2em;
  font-style: normal;
}

p {
  font-size: max(1.5rem, 1.5vw);
  line-height: 1.5;
}

p + p {
  margin-top: 1.5em;
}

header {
  margin: 20vh auto;
  text-align: center;
  text-shadow: 0 0 0.5em rgba(255, 255, 255, 0.8), 0 0 0.1em rgba(255, 255, 255, 0.3);
}

main {
  font-size: max(1.5rem, 1.5vw);
  padding: 3em 2em;
  max-width: min(80%, 30em);
  margin: 0 auto 20vh;
  background: rgb(233, 231, 227);
}

.sub-title {
  font-weight: bolder;
  font-style: italic;
  text-align: center;
  font-size: 1.2em;
}

.amazon-button {
  display: inline-block;
  padding: 0.5em 2em;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5em;
  box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.amazon-button:hover {
  background-color: #ffa41c;
  box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=theme.css.map */
