*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

picture {
  display: block;
  max-width: 100%;
}

body {
  background-color: #ffffff;
  color: #111111;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;

  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: 40px 48px;
}

header {
  display: flex;
  align-items: flex-start;
}

.logo {
  display: block;
  width: 200px;
  max-width: 100%;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

article {
  max-width: 570px;
  width: 100%;
}

p {
  margin-bottom: 1.4em;
}

p:last-child {
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.supported-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888888;
}

.aria-logo {
  height: 54px;
  width: auto;
}

a {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  opacity: 0.6;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 28px 24px;
  }

  .logo {
    width: 140px;
  }

  footer {
    padding-top: 32px;
    padding-bottom: 16px;
    gap: 16px;
  }

  .supported-by {
    gap: 6px;
    font-size: 12px;
  }

  .aria-logo {
    height: 32px;
  }
}
