:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #000;
  color: #fff;
  font-family: "Idiqlat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 6.5rem 1.5rem 1.5rem;
  position: relative;
}

.site-logo {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
  display: block;
  opacity: 0.3;
}

#canvas-wrap {
  width: min(80vw, 640px);
  aspect-ratio: 1 / 1;
}

#canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.instagram-link {
  color: #8f8f8f;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 100;
}

.instagram-link:hover {
  opacity: 0.6;
}

.instagram-link-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: .7;
  margin-bottom: .15rem;
}
