:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f2ff;
  color: #1d1c24;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.playground {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.panel {
  width: min(100%, 620px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #6842a1;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

p {
  max-width: 520px;
  margin: 22px 0 28px;
  color: #55515f;
  font-size: 1.1rem;
  line-height: 1.6;
}

button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #1d1c24;
  border-radius: 6px;
  background: transparent;
  color: #1d1c24;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

button:hover,
.home-link:hover {
  background: #1d1c24;
  color: #fff;
}

.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #1d1c24;
  border-radius: 6px;
  color: #1d1c24;
  font-weight: 700;
  text-decoration: none;
}

output {
  display: block;
  margin-top: 18px;
  color: #55515f;
}
