@charset "UTF-8";
@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/Dosis/Dosis-VariableFont_wght.ttf") format("truetype");
}

body {
  margin: 0;
  background: #f7f4ef;
  color: #1f2327;
  font-family: "Dosis", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 40%);
  pointer-events: none;
}

.center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

blockquote {
  max-width: 600px;
  animation: fade 1.8s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

blockquote p {
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-inline: auto;
}

blockquote footer {
  margin-top: 1.4rem;
  opacity: 0.55;
  font-size: 0.9rem;
  color: #777;
}

/*
.tiny-link {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.45;
}

.tiny-link a {
  color: inherit;
  text-decoration: none;
}
*/
.trace {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  opacity: 0.25;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.trace:hover {
  opacity: 0.6;
}
