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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: white;
  font-family: Arial, sans-serif;
}

main {
  text-align: center;
  padding: 24px;
}

.logo {
  width: min(320px, 70vw);
  height: auto;
}

h1 {
  margin-top: 24px;
  font-size: 28px;
}

p {
  margin-top: 8px;
  font-size: 16px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}