:root {
  --purple: #3d1b7a;
  --pink: #fc3b74;
  --teal: #0fb6b1;
  --orange: #fea60d;
  --ink: #251347;
  --paper: #fffaf6;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

body::before {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--teal), var(--purple));
}

.site {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  padding: 3rem 1.25rem;
  text-align: center;
}

.logo {
  width: min(78vw, 34rem);
  height: auto;
  filter: drop-shadow(0 24px 40px rgb(61 27 122 / 0.14));
}

h1 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(2.25rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
}

.contact {
  color: var(--pink);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 700;
  text-decoration-color: rgb(15 182 177 / 0.5);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.24em;
}

.contact:hover,
.contact:focus-visible {
  color: var(--teal);
  outline: none;
}
