<style>
  /* Fluff */
  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }
  html {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
  }
  .container {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 2rem;
  }

  /* Atropos web component */
  atropos-component {
    display: block;
  }
  atropos-component .atropos-inner {
    border-radius: 1rem;
  }
  atropos-component img {
    position: absolute;
    left: -5%;
    top: -5%;
    width: 110%;
    height: 110%;
    object-fit: contain;
    display: block;
    z-index: 1;
    transform-style: preserve-3d;
    pointer-events: none;
    max-width: none;
  }
  atropos-component img.atropos-spacer {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    visibility: hidden;
  }
  atropos-component .atropos-button-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
  }
  atropos-component .atropos-button-wrap a {
    color: inherit;
    text-decoration: none;
  }
  atropos-component .atropos-shadow {
    filter: blur(50px);
    opacity: .25;
  }
  atropos-component .atropos-active .atropos-shadow {
    opacity: 1 !important;
  }
</style>