@font-face {
  font-family: 'PPAcma Semibold';
  src: url('./assets/PPAcma-Semibold.woff2') format('woff2'),
    url('./assets/PPAcma-Semibold.woff') format('woff'),
    url('./assets/PPAcma-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --kaalis-rust: #8F2E17;
  --kaalis-text: #ffffff;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: 'PPAcma Semibold', 'Bricolage Grotesque', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--kaalis-rust);
  color: var(--kaalis-text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

main {
  text-align: center;
  padding: 24px;
}

h1 {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: .5px;
}

p {
  margin: 0;
  font-size: clamp(14px, 2.2vw, 18px);
  opacity: .9
}

.corner {
  position: fixed;
  width: min(72px, 10vw);
  height: auto;
  opacity: .9;
  /* filter: brightness(0) saturate(100%) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, .25)); */
  z-index: 2;
}

.corner.tl {
  top: 16px;
  left: 16px
}

.corner.tr {
  top: 16px;
  right: 16px;
  transform: scaleX(-1)
}

.corner.bl {
  bottom: 16px;
  left: 16px;
  transform: scaleY(-1)
}

.corner.br {
  bottom: 16px;
  right: 16px;
  transform: scale(-1)
}

.footer {
  position: fixed;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  opacity: .7;
}

a {
  color: #fff
}