/* special-elite-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Special Elite';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/special-elite-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

body {
    max-width: 60rem;
    margin: auto;
    font-family: "Open Sans";
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    font-family: "Special Elite";
}

div {
    margin-bottom: 4rem;
}

p {
    line-height: 1.5rem;
    text-align: justify;
}

code {
    font-size: 1rem;
    color: #a61e1e;
}

.story {
    font-family: "Special Elite";
    background-image: url("/assets/seamless-texture-white-crumpled-paper-background_153912-518.avif");
    padding: 2rem 4rem;
    position: relative;
}

.story:before, .story:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 1em;
    width: 50%;
    top: 80%;
    background: #777;
    box-shadow: 0 1em 0.5em #777;
}

.story:before {
    transform: rotate(-3deg);
    left: 0.5em;
}

.story:after {
    transform: rotate(3deg);
    right: 0.5em;
}

.story .confidential {
    width: 60%;
    display: block;
    margin: auto;
    margin-bottom: 2rem;
    transform: rotate(-10deg);
}

.story p {
    margin-bottom: 2rem;
    text-align: left;
}

.story blockquote p {
    margin-bottom: 1rem;
    color: darkblue;
}

.info {
    background: #ebebeb;
    padding: 1.5rem 3rem;
}

.info img {
    width: 100%;
    margin: 2rem 0;
}

.buttons {
    margin-bottom: 0;
    margin-top: -1rem;
}

.buttons button {
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
}