:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: "JetBrains Mono", monospace;
  background-color: #ffffff;
  color: #1d1d1f;
}

.content {
  text-align: center;
  display: grid;
  gap: 0.75rem;
}

.content__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.content__link {
  font-size: 1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.content__link:hover,
.content__link:focus {
  text-decoration: underline;
}
