body {
  font-family: "Geist", sans-serif;
  padding: 8px 8px 16px 8px;
}

h1 {
  font-family: "Geist Mono", sans-serif;
  margin: 0.5em 0 0.5em 0;
}

p {
  max-width: 36rem;
  margin: 0;
}

img {
  width: 60%;
  border-radius: 6px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bold {
  font-weight: bold;
}

.demo-button {
  font-family: "Geist Mono", sans-serif;
  padding: 12px;
  background: black;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition:
    background-color 100ms ease,
    transform 100ms ease;
  margin: 16px 0 64px 0;
}
.demo-button:hover {
  background-color: oklch(0.37 0.013 285.805);
  transform: scale(1.03);
}

.standard-link {
  color: black;
  max-width: fit-content;
  transition: color 100ms ease;
}
.standard-link:hover {
  color: oklch(0.37 0.013 285.805);
}

@media (width >= 48rem) {
  body {
    padding: 0px 12px 12px 12px;
  }

  h1 {
    font-size: 3rem;
  }

  img {
    width: 200px;
  }

  .demo-button {
    max-width: fit-content;
  }
}
