:root {
  --ink: #1d1d22;
  --link: #0071e3;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  color: var(--ink);
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

a {
  color: var(--link);
  text-decoration: none;
}

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

.home {
  position: relative;
  min-height: 100svh;
  display: grid;
  justify-items: center;
  padding: 24px 24px 32px;
}

.brand {
  width: 160px;
  margin: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  transform: translate(-50%, -50%);
  width: max-content;
}

.contact span,
.contact a {
  display: block;
}
