/* 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;
  background: linear-gradient(to bottom, #b53df5, #5814a2);
}
.container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}
.atropos-button-wrap a{
  background-color: rgba(0,0,0,0.3);
  padding: 1rem;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.atropos-button-wrap a:hover{
  background-color: #fff;
  color: #333;
}



/* 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%;
  -o-object-fit: contain;
  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;
}