body {
  margin: 0;
  padding: 0;

  background-color: var(--illustration-bg);

  --font: minoris, sans-serif;
  --accent-color: #A7749C;
}

body,
input,
button {
  font-family: var(--font);
}

@font-face {
  font-family: minoris;
  src: url(./copyright-infrigement/Majoris.ttf);
}

.fg-white {
  color: white;
}

.illustration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

.illustration > img {
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  display: block;
}

.illustration::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 32px;
  background: linear-gradient(var(--illustration-bg), rgba(0, 0, 0, 0));
  backdrop-filter: blur(2px);
}

.screen {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.container {
  max-width: 812px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.qr-code {
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
}

.space-16 {
  height: 16px;
}

button {
  --bg-color: #000;
  --fg-color: #fff;

  background-color: var(--fg-color);
  color: var(--bg-color);
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--accent-color);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 8px 8px var(--accent-color);

  &:hover {
    box-shadow: 6px 6px var(--accent-color);
    translate: 2px 2px;
  }
  &:active {
    box-shadow: 2px 2px var(--accent-color);
    translate: 6px 6px;
  }
}
