body {
  min-height: 98vh;
  margin: 0;
  font-family: Quicksand;
  background: #121212;
  color: #dedede;
  display: grid;
  font-weight: 500;
  grid-template-rows: auto 1fr auto;
}

header {
  min-height: 10vh;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 48px;
}

footer {
  font-size: 18px;
  min-height: 10vh;
  padding: 0 24px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

footer a {
  color: inherit;
}

.matrix-chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.matrix-chat-link:hover,
.matrix-chat-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.matrix-chat-link img {
  width: 60px;
  height: auto;
  max-width: 60px;
  max-height: 60px;
  display: block;
  flex: 0 0 auto;
}

.matrix-chat-link span {
  display: flex;
  align-items: center;
}

.footer-link {
  max-width: 32rem;
}

@media (max-width: 640px) {
  main {
    font-size: 32px;
    padding: 0 24px;
    text-align: center;
  }

  .matrix-chat-link {
    width: 100%;
    max-width: 24rem;
    padding: 12px 16px;
    flex-wrap: wrap;
  }
}

spacer {
  height: 15vh;
}
