:root {
  --bg: #0f0b11;
  --ink: #fdf6ff;
  --muted: #c9b7d6;
  --accent: #ffb870;
  --accent2: #ff6ad5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      1400px 800px at 20% 40%,
      rgb(255 106 213 / 30%),
      transparent 90%
    ),
    radial-gradient(
      1600px 900px at 80% 50%,
      rgb(255 184 112 / 30%),
      transparent 90%
    ),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.page {
  padding: 100px;
  max-width: 1800px;
  width: 90%;
}

.hero-image img {
  max-width: 100%;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto;
  max-width: 590px;
  text-align: center;
  line-height: 24px;
}

.subtitle p {
  margin: 0 0 8px 0;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-button {
  margin-top: 20px;
  border-width: 2px;
  border-style: solid;
  background: var(--bg);
  color: var(--ink);
  font-weight: 500;
  font-size: 18px;
  padding: 8px 16px;
  font-family: "Instrument Sans";
  border-radius: 8px;
  cursor: pointer;
  transition: all 200ms ease-out;
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;
}

.cta-button::after {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to right, #9f2885, #d17a47 100%);
  content: "";
  z-index: -1;
  border-radius: 8px;
}

.cta-button:hover {
  background: #ffffff;
  color: var(--bg);
}

@media (max-width: 1200px) {
  .page {
    padding: 10vh 2vw;
  }
}

@media (max-width: 500px) {
  button {
    width: 100%;
  }
}
