:root {
  color-scheme: light;
  font-family: "Times New Roman", Times, serif;
  color: #000;
  background: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100svh;
  padding: 0 1rem;
}

main {
  width: min(100%, 48rem);
  margin: 0 auto;
  padding: 4rem 0 2rem;
  text-align: center;
}

.intro {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.5;
}

h1,
p {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-weight: 400;
}

.intro p:last-child {
  display: block;
  margin-top: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: blue;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 0.875rem;
}

@media (min-width: 30rem) {
  body {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
