@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Fira Mono", "Menlo", monospace;
  font-size: 16px;
  color: #fff;
  background: #23264A;
  line-height: 1.6;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #FF6A3D;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}
