:root {
  color: #e5e7eb;
  background: #111827;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100vh;
  max-width: 100vw;
  padding: 16px;
}

.content {
  width: min(100%, 560px);
}

h1 {
  margin: 0;
  color: #e5e7eb;
  font-size: 32px;
  line-height: 1.125;
  font-weight: 700;
}

h2 {
  margin: 32px 0 0;
  color: #e5e7eb;
  font-size: 20px;
  line-height: 1.125;
  font-weight: 700;
}

p {
  margin: 16px 0 0;
}

ul {
  margin: 8px 0 0;
  padding-left: 24px;
}

a {
  color: #e5e7eb;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.copyright {
  margin-top: 32px;
  font-size: 14px;
}

@media (max-width: 520px) {
  .profile {
    text-align: left;
  }
}
